I have got a list of 3D coordinates (x,y,z) and i need to create a .stl file for 3D printer.
Is there any software for this kind of work?
I have got a list of 3D coordinates (x,y,z) and i need to create a .stl file for 3D printer.
Is there any software for this kind of work?
The question is tagged "AutoCAD", so I'm assuming you would be interested with an AutoCAD solution. Using the SubDMesh entity in AutoCAD lets you create a solid from arbitrary points, but as mentioned by our fellows previously, you also need to indicate which point connect to which ones by specifying the faces argument.
if (createSubDMesh)
{
Point3dCollection vertarray = new Point3dCollection();
Int32Collection facearray = new Int32Collection();
for (i = 0; i < npts; i++)
vertarray.Add(new Point3d(ptx[i], pty[i], ptz[i]));
j = 0;
for (i = 0; i < ntri; i++)
{
facearray.Add(3);
facearray.Add(pt1[i]);
facearray.Add(pt2[i]);
facearray.Add(pt3[i]);
}
SubDMesh sdm = new SubDMesh();
sdm.SetDatabaseDefaults();
sdm.SetSubDMesh(vertarray, facearray, 0);
btr.AppendEntity(sdm);
tr.AddNewlyCreatedDBObject(sdm, true);
}
The sample is extracted from that post.
are yo able to draw the file in autocad then you can export that file to .stl format which is compatible with 3D printers
if u have a trouble drawing then explain it