Пример #1
0
 public JsonLinkCloud(NodeRegion region, graphtex gt)
 {
     this.region = region;
     floorplan   = new graphtex(gt);
     nodes       = new JsonLcNodeList();
     links       = new JsonLcLinkList();
 }
Пример #2
0
 public JsonLinkCloud(graphtex gt)
 {
     version   = new JlcVersion();
     floorplan = new graphtex(gt);
     nodes     = new JsonLcNodeList();
     links     = new JsonLcLinkList();
 }
Пример #3
0
 public graphtex(graphtex gt)
 {
     this.texMeth      = gt.texMeth;
     this.texGeom      = gt.texGeom;
     this.bitmapName   = gt.bitmapName;
     this.materialName = gt.materialName;
     this.bitmapXpix   = gt.bitmapXpix;
     this.bitmapYpix   = gt.bitmapYpix;
     this.aspectXoY    = gt.aspectXoY;
     this.scale        = gt.scale;
     this.rotate       = gt.rotate;
     this.translate    = gt.translate;
 }