How to define working plane by object?

Hi,

How to define working plane by object?
There is a command “_CPlane_Object” to do this.
I want to do this by calling function.
How can I do?

Vaker

Is there a specific object type you want to generate this plane from? The _CPlane _Object command asks for user input for the object type and acts accordingly, eventually creating a Plane, and setting the construction plane of the viewport.

You’ll probably need to run: http://developer.rhino3d.com/api/RhinoCommonWin/html/Overload_Rhino_Display_RhinoViewport_SetConstructionPlane.htm

Which will take a Plane as an argument: http://developer.rhino3d.com/api/RhinoCommonWin/html/T_Rhino_Geometry_Plane.htm

How you set up this plane is up to you.

Hi Vaker,

To set a viewport’s construction plane, you’ll want to call CRhinoViewport::SetConstructionPlane().

The CPlane -> Object option allows you select a point, curve, surface, or clipping plane and then will set the active viewport’s construction plane based on what you’ve picked.

Here is an example:

https://github.com/mcneel/rhino-developer-samples/blob/master/cpp/SampleCommands/cmdSampleCPlaneObject.cpp

  • Dale

I got it.
Thanks for your help.

Vaker