You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am new to this community and maybe what I am asking is really basic. However, I was not able to find any reference example for what I want to do.
I have a set of coordinate points (x,y,z) which are supposed to represent a continuous surface. From these points, I would like to generate a STEP file.
Is it possible to do this using pythonocc? (i.e, via generating a NURBS surface from the discrete points that I have)
Is there maybe some reference on how to do these two things?
First generate a NURBS surface from my discrete points.
Then save this NURBS surface into a STEP file.
Any comments and help will be appreciated!
The text was updated successfully, but these errors were encountered:
I seem this is not the method you are aiming for, but it is possible to create a triangular face between neighboring points using the Delauney method. However, there are the following problems.
Because the planes are tacked together, the surface is not curved.
If the point cloud is not convex, the boundary parts are connected.
If the point cloud is not based on a certain plane (curved surface like a sphere), as in Bunny's example, the Delauney method needs to be re-examined.
If the number of points increases, the calculation becomes heavier
To construct a surface, it is necessary to create an algorithm that 1) constructs a surface from a set of partial points using B-Spline, etc., and 2) connects the surfaces so that the boundary parts do not become discontinuous. I do not know such an algorithm.
Hello there pythonocc community,
I am new to this community and maybe what I am asking is really basic. However, I was not able to find any reference example for what I want to do.
I have a set of coordinate points (x,y,z) which are supposed to represent a continuous surface. From these points, I would like to generate a STEP file.
Is it possible to do this using pythonocc? (i.e, via generating a NURBS surface from the discrete points that I have)
Is there maybe some reference on how to do these two things?
Any comments and help will be appreciated!
The text was updated successfully, but these errors were encountered: