🎉Community Raffle - Win $25

An exclusive raffle opportunity for active members like you! Complete your profile, answer questions and get your first accepted badge to enter the raffle.
Join and Win

Create surface mesh from point cloud

User: "Ash_20648"
Altair Community Member
Updated by Ash_20648

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;

Find more posts tagged with

Sort by:
1 - 1 of 11