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.
第一次在这里发帖。我是一名 CNC 机床操作员,我想制作一个为我的 CNC 机床(G 代码)输出代码的程序。
我想了解的是如何将线的起点和起点放在包含我要加工的几何图形的 DXF 文件中,放到某种列表中,这样我就可以(希望)用它们做一些扫描线计算.
我找到了很多关于如何读取 DXF 文件的信息,但我找不到如何存储这些点。
SO:我如何将一对线点(x1 y1,x2 y2)保存到列表中并与它们一起计算。
别介意我的英语不好
在 C# 中有一个对象称为List. 您可以将点作为Point对象存储在列表中。
List
Point
List<Point> myList = new List<Point>(); myList.Add(new Point(x1, y1));
然后继续使用该Add方法将更多点添加到您的列表中。您可以使用foreach循环或索引号从列表中检索点。这些点在列表中的排列顺序与您添加它们的顺序相同。
Add
foreach