Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想实现允许我将 CAD 对象表面的(网格)点导出到文件中的功能。
我查看了一些 CAD 应用程序,但找不到任何可以让我直接执行此操作的程序,因此我怀疑我可能需要使用提供 API 的 CAD 应用程序获取有关对象网格点的信息。
请任何人都可以向我指出一个可以帮助我实现目标的应用程序。
写一个 STL 文件,然后
猫我的文件.stl | grep -i 顶点 | 排序 | uniq > myPoints.txt
(同样作为 Windows 用户,您可以使用 Cygwin 使用这些命令)。