Example #1
0
 public GeometryData(GeometryAttributes attributes, GeometryIndexAttribute index)
 {
     Attributes = attributes;
     Index      = index;
 }
Example #2
0
 public Geometry(string uuid, string name, string type, GeometryAttributes attributes, GeometryIndexAttribute index)
 {
     Uuid = uuid;
     Name = name;
     Type = type;
     Data = new GeometryData(attributes, index);
 }