示例#1
0
        public static void AddListOfPointsToFile(string filePath, List <Point3D> points)
        {
            Path3D input = Storage.LoadPaths(filePath);

            input.AddListOfPoints(points);

            Storage.SaveToFile(input, filePath);
        }
示例#2
0
        public static void AddPathToFile(string filePath, Path3D newPath)
        {
            Path3D input = Storage.LoadPaths(filePath);

            input.AddListOfPoints(newPath.list3DPoints);

            Storage.SaveToFile(input, filePath);
        }