创建/更新模型结构

create / update modelStructure

  1. 什么是 API 基于 modelStructure 创建新模型(即从外部源转换而来)?

  2. 如何存储 modelStructure 更改,即在应用 Staging API 并收到带有建议家具的更新 modelStructure 之后

我们不提供 public API 将外部生成的模型结构存储在我们的数据库中,您需要自己存储它

计划在 API 版本 3(第三季度/第四季度)

可能的手动工作流程: 将您的 modelStructure 包装在 json 中,如下所示, 将其保存为文件名。model3d.json

然后手动拖放到编辑器中保存 https://spaces.archilogic.com/3d/template/empty

{
  "version": 2,
  "modelStructure": [
    {
        "type": "wall",
        "x": -2,
        "z": -0,
        "l": 4,
        "ry": 120,
        "children": [
            {
                "type": "door",
                "x": 2.2,
                "children": [],
                "y": 0,
                "z": 0,
                "ry": 0,
                "l": 0.9,
                "w": 0.15,
                "h": 2
            }
        ],
        "y": 0,
        "w": 0.15,
        "h": 2.4
    }
  ]
}