Click or drag to resize

InstanceObjectExplode Method (Boolean, Guid, Boolean, RhinoObject, ObjectAttributes, Transform)

Explodes the instance reference into pieces.

Namespace:  Rhino.DocObjects
Assembly:  RhinoCommon (in RhinoCommon.dll)
Since: 8.9
Syntax
public void Explode(
	bool skipHiddenPieces,
	Guid viewportId,
	bool explodeNestedInstances,
	out RhinoObject[] pieces,
	out ObjectAttributes[] pieceAttributes,
	out Transform[] pieceTransforms
)

Parameters

skipHiddenPieces
Type: SystemBoolean
If true, pieces that are not visible will not be appended to the pieces out parameter.
viewportId
Type: SystemGuid
If skipHiddenPieces is false, then viewportId is ignored. If bSkipHiddenPieces is true and and viewportId is not Guid.Empty, then layer and object per viewport visibility settings are used. If bSkipHiddenPieces is true and and viewport_id is Guid.Empty, then layer and object global visibility settings are used.
explodeNestedInstances
Type: SystemBoolean
If true, then nested instance references are recursively exploded into pieces until actual geometry is found. If false, an InstanceObject is added to the pieces out parameter when this InstanceObject has nested references.
pieces
Type: Rhino.DocObjectsRhinoObject
An array of Rhino objects will be assigned to this out parameter during this call.
pieceAttributes
Type: Rhino.DocObjectsObjectAttributes
An array of object attributes will be assigned to this out parameter during this call.
pieceTransforms
Type: Rhino.GeometryTransform
An array of the previously applied transform matrices will be assigned to this out parameter during this call.
See Also