Beispiel #1
0
 public void ShareVertexData(PathStorage pathStorageToShareFrom)
 {
     vertices = pathStorageToShareFrom.vertices;
 }
Beispiel #2
0
 public PathStorage(string svgDString)
 {
     vertices = new VertexStorage();
     ParseSvgDString(svgDString);
 }
 //--------------------------------------------------------------------
 // Join path. The path is joined with the existing one, that is,
 // it behaves as if the pen of a plotter was always down (drawing)
 //template<class VertexSource>
 public void join_path(VertexStorage vs)
 {
     join_path(vs, 0);
 }
Beispiel #4
0
 public PathStorage()
 {
     vertices = new VertexStorage();
 }
 public void ShareVertexData(VertexStorage pathStorageToShareFrom)
 {
     vertexDataManager = pathStorageToShareFrom.vertexDataManager;
 }