MeasurementPath

open_in_new

A representation of measurement path made up of a sequence of points within the model. This structure is intended to replace measurements.

GraphQL Schema definition

  • type MeasurementPath implements Annotation {
  • id: ID!
  • created: DateTime!
  • modified: DateTime!
  • model: Model
  • enabled: Boolean!
  • label: String
  • # Ordered sequence of points that make up the measurement path.
  • points: [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
  • distance(units: Units, start: Int, end: Int): Float
  • }