OBJECT
MeasurementPath
A representation of measurement path made up of a sequence of points within the model. This structure is intended to replace measurements.
link GraphQL Schema definition
- type MeasurementPath implements Annotation {
 - : ID! 
 - : DateTime! 
 - : DateTime! 
 - : Model 
 - : Boolean! 
 - : String 
 - #   Ordered sequence of points that make up the measurement path.
 - : [MeasurementPathPoint!]! 
 - #   Calculate the distance along the measurement path.
 - # 
 - # Arguments
 - #   units: Units to present the distance in.
 - #   Default:  The owning organization's preferred units.
 - #   start: Index of the starting point.
 - #   Default:  0
 - #   end: Index of the ending point.
 - #   Default: size of points - 1
 - (: Units, : Int, : Int): Float 
 - }
 
    link Require by
- ModelA digital twin, metadata and access to assets associated with a 3D model of a space.
 - ModelFloorRepresents a floor within the model. This is generally used as a navigation helper as well as a container for rooms, locations and annotations.
 - ModelRoomA room within the model, this acts as a container for other information.
 - MutationData update operations.