Autodesk ObjectARX
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
how to create a surface using a set of known points ?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Re: how to create a surface using a set of known points ?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Hi,
I am assuming that you have enough information on how those points are inter connected.
If so, then you could first create a subDMesh and then convert it to a surface.
To create a SubDMesh from a set of points, you can use the AcDbSubDMesh::setSubDMesh method.
It expects the vertices and face information in a certain format which is explained in this Devblog post :
After you have created the subDMesh, use the AcDbSubDMesh::convertToSurface method.
Balaji
Developer Technical Services
Autodesk Developer Network
Re: how to create a surface using a set of known points ?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
no,it just e a set of sactter points ,using the points to reconstruct the surface of 3D entity .
thank you
Re: how to create a surface using a set of known points ?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Here's some code (in .NET) to create a triangulated surface from a set of points in case that helps - http://through-the-interface.typepad.com/through_t
Although it sounds like you may actually want a 'shape extraction' algorithm to detect planes etc. from a set of points with random scatter. I don't have an algorithm for that at hand.
Stephen Preston
Autodesk Developer Network
