Create surface mesh from point cloud
Is it possible to create surface mesh from point cloud? I am able to generate nodes using below tcl code but I would also give it a specific node id and create surface mesh using those nodes. I have attached an image with the nodes I generated using the XYZ coords.
proc p_ReadCloudPointFile {FilePath} { set fpt [open $FilePath] set buf [string map {, .} [read $fpt]] close $fpt set lines [split $buf \n] foreach line $lines { if {[scan $line "%f %f %f" n x y]==3} { *createnode $n $x $y } } } set fileTypes { {"Data" {.dat} } {"All files" * } } set file_name [tk_getSaveFile -filetypes $fileTypes -title "DataFile" ] p_ReadCloudPointFile $file_name;
Best Answer
-
Please refer to this video exactly on that topic from our Altair How-to Youtube channel
https://www.youtube.com/watch?v=v1iU3XVGaQw
1
Answers
-
Please refer to this video exactly on that topic from our Altair How-to Youtube channel
https://www.youtube.com/watch?v=v1iU3XVGaQw
1 -
Jason Craanen_20442 said:
Please refer to this video exactly on that topic from our Altair How-to Youtube channel
https://www.youtube.com/watch?v=v1iU3XVGaQw
Thank you! It seems like only 2022 version has this option. Unfortunately I do not have the license for 2022 at the moment. I have made a request to Altair.
0