Menu

Figures

Create Figure objects inside your model.

Core concepts:

  • Add different figures with layers to your model.

Syntax

Help
figures:
  string:
    name: integer
    hidden: boolean
    layers:
      string:
        source: string
        offset: integer
Key Required Type Default Description
name Yes integer Null Set the name of the figure.
hidden No bool - Set if the layers figure is visible or not.
layers No Layer object - The object where to note the layers of the figure.
source yes string - The source of the layer this could be an image url.
offset yes integer - The offset of the layer

Examples

figures:
  f_front_view:
    name: Vooraanzicht
    hidden: false
    layers:
      layer_0:
        source: https://img.codeflex.it/f_front_view_600.tif
        offset: 0
figures:
  f_front_view:
    name: Vooraanzicht
    hidden: false
    layers:
      layer_0:
        source: https://img.codeflex.it/f_front_view_600.tif
        offset: 0
  f_back_view:
    name: Achteraanzicht
    hidden: true
    layers:
      layer_0:
        source: https://img.codeflex.it/f_back_view_400.tif
        offset: 0
      other_layer:
        source: https://blabla.bla
        offset: 2
      other_other_layer:
        source: https://anotherblabla.bla
        offset: 1
Menu