Message 1 of 4
How to create a NURBS Surface given a gird of XYZ points

Not applicable
10-10-2019
10:06 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi everyone,
I want to create a solid using BRepBuilder. One surface of the solid is a non planar curved surface defined by a grid of XYZ points. I can create a HermiteSurface from these points using HermiteSurface.Create, but BRepBuilder does not support HermiteSurface. I could not find an API method to directly create a NURBS Surface from these points. The BRepBuilderSurfaceGeometry.CreateNURBSSurface seems too complicated for this purpose because it is not easy to get all those inputs. If I can create a HermiteFace, I may use GetNurbsSurfaceDataForFace to get the inputs for CreateNURBSSurface. However, I could not find a way to get a HermiteFace.
Any suggestions would be greatly appreciated. Thanks