/// <summary>
 /// This will use the factory in order to create a linestring from a shape
 /// </summary>
 /// <param name="MapWinGIS_Shape">A MapWinGIS.Shape</param>
 public LineString(object MapWinGIS_Shape)
 {
     Coordinates = GeometryFactory.CreateLineString(MapWinGIS_Shape).Coordinates;
 }
Exemple #2
0
 /// <summary>
 /// A MapWinGIS.Point Representing the tip of the vector,
 /// where the beginning of the vector is at the origin
 /// </summary>
 /// <remarks>This is passed as an object to isolate MapWinGIS refs</remarks>
 public object To_MapWinGIS_Point()
 {
     return(GeometryFactory.mwPointFromVector(this));
 }