BRepFace.from_plane
- classmethod BRepFace.from_plane(plane, udomain=None, vdomain=None, loop=None, inside=True)
Construct a face from a plane.
- Parameters
plane (
compas.geometry.Plane
) – The plane.udomain (Tuple[float, float], optional) – U parameter minimum and maximum.
vdomain (Tuple[float, float], optional) – V parameter minimum and maximum.
loop (
compas_occ.brep.BRepLoop
, optional) – A boundary loop.inside (bool, optional) – If True, the face is inside the boundary loop.
- Returns