-
Notifications
You must be signed in to change notification settings - Fork 156
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Visualizing surface without ordering control points #169
Comments
Hi @thoeschler, Just for visualization of the surface, the only thing you need is the evaluated points, i.e. The order of control points or evaluated points is not required for visualization. You can run a tessellation algorithm on the points (most assume the input as a point cloud) or just visualize the points as small spheres or use any external visualizer, e.g. Paraview. The visualizers in the Hope these help. |
Hi, I have another question. Is it already possible to plot both curves and surfaces in the same figure? |
For evaluation of the surface, yes, you have to have the ordered points, but you asked for visualization, and it is not necessary to order any points for that. Containers does not support containing or visualization of mixed geometries at this time. You may extend the base class and add any feature you would like to. |
Hi!
is it possible to visualize a surface without specifying the number of control points in the respective directions u and v? Mathematically, this is not required for visualization.
In my example I simply have a list of control points in random order. The examples in https://github.com/orbingol/geomdl-examples/tree/master/surface require that the points are given in a specific order.
Best regards,
Thilo
The text was updated successfully, but these errors were encountered: