I am new to openCascade and I m trying to convert a point cloud into a .STEP file format. I have realized that a point cloud cannot be converted directly into a STEP file. So I am trying to convert a point cloud into an STL file first and then proceed on to converting the STL into STEP.
Could you please help me to convert the point cloud into an STL file
Discussion
3 archived replies
Posts are displayed in their archived order.
01Commenter-1
Hellow Author,
I think there are two ways to convert a point cloud to STEP file:
1. Convert the point cloud to BSpline surface, then save the BSpline surface to STEP;
2. Find the mesh for point cloud, this is the your way. Because there is only triangles in STL, so the STEP is the same.
Best Regards,
Commenter-1
02Commenter-2
Interesting tips, BTW in 1st way how does OCC support conversion of point cloud to b-spline surface ( single patch) ??
Also in 2nd way too how does OCC finds a mesh for a given point cloud ?