Building a triangulated polygon mesh with openNURBS

Greetings,

I’ve written .3dm import / export routines, but now I need to do a little geometry in a standalone program.

In Rhino I use the following commands to obtain a triangulated polygon mesh encompassing a set of planar points: 1) CurveThroughPt 2) PlanarSrf 3) Mesh. If it’s possible to accomplish the same thing using the openNurbs 5 SDK, what classes / routines should I be studying?

Thanks,

Jim

Hi Jim,

1.) There is no “CurveThoughtPt” functionality in openNURBS. If you search the Internet, you can probably find several papers that describe the process.

2.) The code behind the “PlanarSrf” command is not in openNURBS. But you might get what you need by using ON_BrepTrimmedPlane. See opennurbs_brep.h for details.

3.) OpenNURBS will not create meshes from surfaces or polysurfaces.

Keep in mind that openNURBS is designed to read and write Rhino files. It is not a general purpose geometry library.

http://wiki.mcneel.com/developer/opennurbs/limitations