Ejemplo n.º 1
0
 public void setStorage(PropertyStorage storage)
 {
     this.shared = storage;
 }
Ejemplo n.º 2
0
 ///
 /// Creates a polygon from the specified point list.
 ///
 /// <param name="points">the points that define the polygon</param>
 /// <param name="shared">shared property storage</param>
 /// <returns>a polygon defined by the specified point list</returns>
 ///
 public static Polygon fromPoints(List <IVector3d> points,
                                  PropertyStorage shared)
 {
     return(fromPoints(points, shared, null));
 }