public void setStorage(PropertyStorage storage) { this.shared = storage; }
/// /// 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)); }