removedInput schema / properties / constraints / items / properties
Removed value: -{
- "entities": {
- "description": "Ids of the entities the constraint relates.",
- "items": {
- "type": "string"
- },
- "type": "array"
- },
- "id": {
- "type": "string"
- },
- "type": {
- "enum": [
- "COINCIDENT",
- "DISTANCE",
- "HORIZONTAL",
- "VERTICAL",
- "PARALLEL",
- "PERPENDICULAR",
- "EQUAL_LENGTH",
- "TANGENT",
- "RADIUS",
- "ANGLE",
- "CONCENTRIC",
- "SYMMETRIC"
- ],
- "type": "string"
- },
- "value": {
- "description": "Required for DISTANCE, RADIUS, and ANGLE.",
- "type": "number"
- }
-}
removedInput schema / properties / entities / items / oneOf
Removed value: -[
- {
- "description": "POINT — a 2D point.",
- "properties": {
- "fixed": {
- "description": "If true, the solver won't move this point.",
- "type": "boolean"
- },
- "id": {
- "type": "string"
- },
- "type": {
- "enum": [
- "POINT"
- ],
- "type": "string"
- },
- "x": {
- "type": "number"
- },
- "y": {
- "type": "number"
- }
- },
- "required": [
- "id",
- "type",
- "x",
- "y"
- ],
- "type": "object"
- },
- {
- "description": "LINE — references two point ids.",
- "properties": {
- "id": {
- "type": "string"
- },
- "p1": {
- "type": "string"
- },
- "p2": {
- "type": "string"
- },
- "type": {
- "enum": [
- "LINE"
- ],
- "type": "string"
- }
- },
- "required": [
- "id",
- "type",
- "p1",
- "p2"
- ],
- "type": "object"
- },
- {
- "description": "CIRCLE — references a center point id.",
- "properties": {
- "center": {
- "type": "string"
- },
- "id": {
- "type": "string"
- },
- "radius": {
- "type": "number"
- },
- "type": {
- "enum": [
- "CIRCLE"
- ],
- "type": "string"
- }
- },
- "required": [
- "id",
- "type",
- "center",
- "radius"
- ],
- "type": "object"
- }
-]