Example #1
0
 public Spline(SplineType type, List <SplinePoint> points)
 {
     Name       = "";
     Type       = type;
     PointList  = points;
     Dirrection = SplineDirrection.Left;
 }
Example #2
0
 public Spline(List <SplinePoint> points)
 {
     Name       = "";
     Type       = SplineType.Wall;
     PointList  = points;
     Dirrection = SplineDirrection.Left;
 }
Example #3
0
 public Spline(SplineType type, List <SplinePoint> points, SplineDirrection dirrection)
 {
     Name       = "";
     Type       = type;
     PointList  = points;
     Dirrection = dirrection;
 }
Example #4
0
 public Spline(Spline spline)
 {
     Name       = spline.Name;
     Type       = spline.Type;
     Dirrection = spline.Dirrection;
     PointList  = spline.PointList;
 }