123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- {
- "types": {
- "Table": [
- {
- "name": "x",
- "type": "int",
- "default": "0"
- },
- {
- "name": "y",
- "type": "int",
- "default": "0"
- }
- ],
- "Chair": [
- {
- "name": "order",
- "type": "int",
- "default": "1"
- }
- ],
- "around": [
- {
- "name": "",
- "type": "",
- "default": ""
- }
- ]
- },
- "constraints": [
- {
- "name": "GC_UniqueTable",
- "event": "",
- "targetType": "*",
- "code": "(getAllNodes(['/Formalisms/DiningRoom/DiningRoom/Table']).length <= 1)"
- }
- ],
- "actions": [],
- "cardinalities": {
- "Table": [
- {
- "dir": "out",
- "type": "around",
- "min": "0",
- "max": "Infinity"
- }
- ],
- "Chair": [
- {
- "dir": "in",
- "type": "around",
- "min": "0",
- "max": "Infinity"
- }
- ],
- "around": [
- {
- "dir": "in",
- "type": "around",
- "min": "0",
- "max": "1"
- },
- {
- "dir": "in",
- "type": "Table",
- "min": "0",
- "max": "1"
- },
- {
- "dir": "out",
- "type": "Chair",
- "min": "0",
- "max": "1"
- }
- ]
- },
- "legalConnections": {
- "Table": {
- "Chair": [
- "around"
- ]
- }
- },
- "connectorTypes": {
- "around": "visual"
- },
- "types2parentTypes": {
- "Table": [],
- "Chair": [],
- "around": [],
- "GC_UniqueTable": []
- }
- }
|