Example #1
0
 public Path(Transform center, Path path)
 {
     container = center;
     segments  = new List <Segment> {
         new Segment(center, container)
     };
     type = path.type;
 }
Example #2
0
 public Path(Path path)
 {
     resolution  = path.resolution;
     spacing     = path.spacing;
     segments    = path.segments;
     container   = path.container;
     type        = path.type;
     bake_points = path.bake_points;
 }