BrepFaceChangeSurface Method |
Expert user tool that replaces the 3d surface geometry use by the face.
Namespace:
Rhino.Geometry
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 5.0
Syntax public bool ChangeSurface(
int surfaceIndex
)
Public Function ChangeSurface (
surfaceIndex As Integer
) As Boolean
Parameters
- surfaceIndex
- Type: SystemInt32
brep surface index of new surface.
Return Value
Type:
Booleantrue if successful.
Remarks
If the face had a surface and new surface has a different shape, then
you probably want to call something like RebuildEdges() to move
the 3d edge curves so they will lie on the new surface. This doesn't
delete the old surface; call Brep.CullUnusedSurfaces() or Brep.Compact()
to remove unused surfaces.
See Also