随笔分类 -  视觉

摘要:1、多段线封闭图形排序 internal class Program { private static void Main(string[] args) { List<Hv_Point> points = new List<Hv_Point>() { new Hv_Point(1,1), new H 阅读全文
posted @ 2025-03-10 22:56 孤沉 阅读(16) 评论(0) 推荐(0)
摘要:public class IntArrayDemo { public static void Print() { for (int i = 0; i<IntArray.Ints.Length; i++) { Console.WriteLine(i); } } public static void G 阅读全文
posted @ 2024-10-17 23:02 孤沉 阅读(23) 评论(0) 推荐(0)
摘要:1、包装一下Point类,增加Id public class PointWithId { public int Id { get; set; } public Point Coordinate { get; set; } public PointWithId(int id, Point coordi 阅读全文
posted @ 2024-09-22 00:49 孤沉 阅读(48) 评论(0) 推荐(0)