RhinoBrep.from_plane
- classmethod RhinoBrep.from_plane(plane, domain_u=(-1, 1), domain_v=(-1, 1))[source]
Create a RhinoBrep from a plane.
- Parameters:
- plane
compas.geometry.Plane
orcompas.geometry.Frame
The source plane.
- domain_utuple of float, optional
The U domain of the plane. Defaults to (-1, +1).
- domain_vtuple of float, optional
The V domain of the plane. Defaults to (-1, +1).
- plane
- Returns:
Notes
When using a Rhino Plane, to maintain the original orientation data use
plane_to_compas_frame()
andframe_to_rhino_plane()
.