Measurement

open_in_new

A measurement between two points within the model.

GraphQL Schema definition

  • type Measurement implements Annotation {
  • id: ID!
  • created: DateTime!
  • modified: DateTime!
  • model: Model
  • # The floor this measurement is on.
  • floor: ModelFloor
  • # Whether or not this measurement should be shown in public views of the model.
  • enabled: Boolean!
  • label: String
  • startPosition: Point
  • endPosition: Point
  • startNormal: Point
  • endNormal: Point
  • room: ModelRoom
  • # The distance of the measurement.
  • #
  • # Arguments
  • # units: The units to return the result in.
  • # Default: The organization's preferred units.
  • distance(units: Units): Float!
  • }