Click or drag to resize

VisualAnalysisModeDrawExtrusionObject Method

Draws one extrusion. Override this method to add your custom behavior.

The default implementation does nothing.

Namespace:  Rhino.Display
Assembly:  RhinoCommon (in RhinoCommon.dll)
Syntax
protected virtual void DrawExtrusionObject(
	ExtrusionObject extrusion,
	DisplayPipeline pipeline
)

Parameters

extrusion
Type: Rhino.DocObjectsExtrusionObject
An extrusion object.
pipeline
Type: Rhino.DisplayDisplayPipeline
The current display pipeline.
Remarks
Extrusions are not breps, so DrawBrepObject(BrepObject, DisplayPipeline) is not called for them. A mode that should treat the two alike needs to override both.
See Also