RenderPipeline Constructor (RhinoDoc, RunMode, PlugIn, Size, String, RenderWindowStandardChannels, Boolean, Boolean) |
Constructs a subclass of this object on the stack in your Rhino plug-in's Render() or RenderWindow() implementation.
Namespace:
Rhino.Render
Assembly:
RhinoCommon (in RhinoCommon.dll)
Syntax protected RenderPipeline(
RhinoDoc doc,
RunMode mode,
PlugIn plugin,
Size sizeRendering,
string caption,
RenderWindowStandardChannels channels,
bool reuseRenderWindow,
bool clearLastRendering
)
Protected Sub New (
doc As RhinoDoc,
mode As RunMode,
plugin As PlugIn,
sizeRendering As Size,
caption As String,
channels As RenderWindowStandardChannels,
reuseRenderWindow As Boolean,
clearLastRendering As Boolean
)
Parameters
- doc
- Type: RhinoRhinoDoc
A Rhino document. - mode
- Type: Rhino.CommandsRunMode
A command running mode, such as scripted or interactive. - plugin
- Type: Rhino.PlugInsPlugIn
A plug-in. - sizeRendering
- Type: System.DrawingSize
The width and height of the rendering. - caption
- Type: SystemString
The caption to display in the frame window. - channels
- Type: Rhino.RenderRenderWindowStandardChannels
The color channel or channels. - reuseRenderWindow
- Type: SystemBoolean
This parameter is obsolete. - clearLastRendering
- Type: SystemBoolean
true If the last rendering should be removed. Indicates that this
render is being done using RenderQuiet(). It specifically makes sure
the render mesh iterator does not display any progress user interface.
See Also