GeometryStream

The GeometryStreamProps wire format describes how the graphics and appearance information for GeometricElement and GeometryPart is serialized to JSON. A GeometryStreamProps is an array of GeometryStreamEntryProps entries.

Appearance related entries are all completely optional. The recommended approach to establish graphical appearance is through SubCategoryAppearance. A GeometricElement's Category determines the default appearance for any graphics in its GeometryStream, which is the SubCategoryAppearance of the default SubCategory, see Category.myDefaultSubCategoryId. For a GeometryPart, it inherits the appearance established by the GeometricElement's GeometryStream through which it is instanced.

Some appearance entries override the default SubCategoryAppearance, while others are for supplying additional appearance information that is not generally applicable to all geometry types and isn't represented in SubCategoryAppearance. The following entries are specific to setting the appearance of graphics in the GeometryStream:

Geometry entries should always be inserted into the GeometryStreamProps array unrotated with a basis point of 0,0,0 (local coordinate frame). The world location and orientation of the geometry is determined by the GeometricElement's placement origin and angle(s), GeometricElement3dProps.placement and GeometricElement2dProps.placement.

Correct Example

A GeometricElement can be translated and rotated by just updating its placement, the geometry is not transformed.

The element aligned bounding box that is part of the placement is computed automatically based on the local coordinate geometry. An application should leave Placement3dProps.bbox and Placement2dProps.bbox undefined when inserting a new GeometricElement or updating an existing element's GeometryStream; any defined value will be ignored.

Incorrect Example

  • IModelJson.GeometryProps
    • Geometric primitive types: points, curves, paths, planar regions, bspline surfaces, surface primitives, solid primitives, linear sweeps of paths and regions, rotational sweeps of paths and regions, ruled sweeps of paths and regions, and index meshes. Geometry
  • GeometryPartInstanceProps
    • Add a reference to a GeometryPart from the GeometryStream of a GeometricElement. Used to instance repeated geometry; the part geometry is defined once and then shared by multiple GeometricElements or referenced multiple times by a single GeometricElement.
    • The GeometryPartInstanceProps.origin and GeometryPartInstanceProps.rotation specify the relative location from the basis point (typically 0,0,0) used for the GeometricElement's geometry. Geometry
    • Not valid when creating a GeometryPart, nesting of GeometryParts is not supported.
    • As the GeometryPart does not specify a Category, and its GeometryStream does not support SubCategory changes; Category and SubCategory is established by the GeometricElement prior to adding a GeometryPartInstanceProps to the GeometryStreamProps array.
  • TextStringProps
    • Add a single line of text to the GeometryStream for a GeometricElement or GeometryPart.
    • The TextStringProps.origin and TextStringProps.rotation specify the relative location from the basis point (typically 0,0,0) used for the GeometricElement's geometry.
  • BRepEntity.DataProps
    • Raw BRep data, not generally useful outside of a geometry export scenario.
    • The BRep data must be specifically requested using ElementLoadProps.wantBRepData.
    • The body type, body to local transform, and any face material attachments are returned when requested using ElementLoadProps.wantGeometry.
  • LowAndHighXYZ
    • Store range of each geometric primitive to allow efficient filtering on range criteria without having to instantiate the geometry.
    • Useful for GeometryStreams containing more than one geometric primitive; for a single geometric primitive, the geometry range is the placement's bounding box.
    • Not necessary for GeometryPartInstanceProps entries, a GeometryPart stores its bounding box in GeometryPart.bbox.
    • To include sub-ranges when creating a new GeometryStream, just add this entry to the GeometryStreamProps array before adding geometry. The low and high values will be computed automatically and will be ignored.

Creating a GeometryStream

To help with the creation of the GeometryStream for a new GeometricElement or GeometryPart, GeometryStreamBuilder is provided.

  • Appearance information can be specified by a GeometryParams object that will append all relevant wire format entries to the GeometryStreamProps array.
  • Geometric primitives can be specified by a GeometryQuery object that will append the appropriate wire format geometry entry.
  • Supports supplying entries in world coordinates, such as from an InteractiveTool, and transforms them to placement relative local coordinate entries.

Iterating a GeometryStream

To help with inspecting the GeometryStream of an existing GeometricElement or GeometryPart, GeometryStreamIterator is provided.

  • Appearance related wire format entries are accumulated in a single GeometryParams object.
  • Iterator stops when it encounters a geometric entry: GeometryQuery, TextString, or a GeometryPart reference.
  • Current iterator provides the GeometryParams that determines the appearance of the geometry entry as well as the GeometryStreamIteratorEntry.localToWorld transform.
  • Supports returning entries in world coordinates when supplied the GeometricElement's placement.
  • Supports iterating the GeometryStream of a GeometryPart in the context of a GeometricElement's GeometryStream.

Last Updated: 08 January, 2020