@beta This is part of the Property Insights Beta

Defines an opening on a bounded region edge.

GraphQL Schema definition

  • type Opening implements LayeredElement {
  • id: ID!
  • # The layer the Opening is associated with.
  • layer: ModelLayer
  • # The total height of the opening feature as a distance from it's lowerElevation.
  • height: Float!
  • # The total width of the opening.
  • width: Float!
  • # The lowermost z position of the opening feature in the
  • # Matterport model x-y-z space.
  • lowerElevation: Float!
  • # Openings are understood relative to the edges they are defined on.
  • #
  • # The 'relativeCenter' is the fractional length (between 0 and 1)
  • # of the center of the opening along the edge it is placed on.
  • #
  • # The opening's center is coincident with the first listed vertex on
  • # the edge if set to 0, halfway along the edge if set to .5, etc.
  • relativeCenter: Float!
  • # The type of opening in the boundary edge.
  • # e.g. doorway, window, etc.
  • type: OpeningType!
  • }