How to Create faces from Vertex [X Y Z] co-ordiante for STL write ? without inbuilt STL command?
11 次查看(过去 30 天)
显示 更早的评论
How to Create faces from Vertex [X Y Z] co-ordiante for STL write ? without inbuilt STL command?
0 个评论
回答(1 个)
KSSV
2019-4-29
Read about delaunay and delaunayTriangulaion.
Once you have formed faces..you may use stlwrite from
2 个评论
raouf takab
2019-7-25
编辑:raouf takab
2019-7-25
Answer by RiK:
An stl file has two parts. One part contains triplets of vertex IDs, and the other part contains the xyz coordinates of each vertex. The triplets tell you the three corners of a face of your mesh.
In principle there can be more than three IDs, but triangular meshes are the most usual.
The data you have seems to only be the faces array, although maybe the vertices array is hidden in the last part of your array.
Also, the faces array describes the vertices, not the normal vector of that face.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Lighting, Transparency, and Shading 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!