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'm working through the LaGriT tutorials and examples but haven't found a way or a LaGriT command to generate a surface in 3D from point cloud data. I have a set of points (>4) in 3D space, but the quadxy and surface commands only take a maximum of 4 points.
Could someone help or point me in the right direction/command?
Thanks!
The text was updated successfully, but these errors were encountered:
It depends upon how complex the point cloud to surface is.
If the 'surface' is z(x,y) [single value, does not wrap back on itself] then just save the z values to a temporary attribute, set z's to 0, connect the points in the xy plane using connect, then pop the surface back up by setting z values to saved values.
Here is an example creating points then connecting into a surface.
https://lanl.github.io/LaGriT/pages/docs/demos/main_2d_connect.html
You would read the points into mo_tri, use cmo/addatt and cmo/copyatt to save the Z values.
Set Z to zero with cmo/setatt/mo_tri/zic 0.
Connect then copy saved z values back into zic.
Terry
Hi,
I'm working through the LaGriT tutorials and examples but haven't found a way or a LaGriT command to generate a surface in 3D from point cloud data. I have a set of points (>4) in 3D space, but the
quadxy
andsurface
commands only take a maximum of 4 points.Could someone help or point me in the right direction/command?
Thanks!
The text was updated successfully, but these errors were encountered: