Mattertag

open_in_new

A point in the model with other information such as clips, photos and text associated with it.

GraphQL Schema definition

  • type Mattertag implements Annotation {
  • id: ID!
  • created: DateTime!
  • modified: DateTime!
  • # The model this tag is associated with.
  • model: Model
  • # The floor this tag is on.
  • floor: ModelFloor
  • enabled: Boolean!
  • # An RGB hex string representing the highlight color for the Mattertag.
  • color: String
  • # A short label to show users to describe the point in the model being tagged.
  • label: String
  • # A detailed description to show users describing the point being tagged.
  • description: String
  • # A link to additional media (image, video, etc) to display in the tag.
  • media: String
  • # The type of media associated with the tag. This will be null if
  • # no media is present.
  • mediaType: MattertagMediaType
  • # The Mattertag anchor's position.
  • anchorPosition: Point
  • # The position of the disc marking the Mattertag annotation.
  • discPosition: Point
  • # The normalized unit vector of the stem's direction from the annotation to the
  • # disc.
  • stemNormal: Point
  • # The length of the Mattertag stem.
  • stemLength: Float
  • # Whether or not to show a stem or line from the anchor
  • # to the Mattertag disc.
  • stemEnabled: Boolean
  • # @deprecated Deprecated after v2020.05.04, renamed to anchorPosition for clarity.
  • position: Point
  • # @deprecated Deprecated after v2020.05.04, split into stemNormal and stemLength
  • # for clarity.
  • stemDirection: Point
  • # The ObjectAnnotation this Mattertag was created from.
  • # @beta This field is part of a limited access beta.
  • objectAnnotation: ObjectAnnotation
  • # Keywords associated with this Mattertag.
  • keywords: [String!]
  • }