Example #1
0
 /// <summary>
 /// Creates a new dot element.
 /// </summary>
 /// <param name="color"></param>
 /// <param name="radius"></param>
 /// <param name="dot"></param>
 public ElementDot(int color, double radius, ShapeDotF<GeoCoordinate, GeoCoordinateBox, GeoCoordinateLine> dot, bool fixed_width)
 {
     _dot = dot;
     _color = color;
     _radius = radius;
     _fixed_width = fixed_width;
 }
Example #2
0
 /// <summary>
 /// Creates a new dot element.
 /// </summary>
 /// <param name="color"></param>
 /// <param name="radius"></param>
 /// <param name="dot"></param>
 public ElementEllipse(int color, double radius, ShapeDotF<GeoCoordinate, GeoCoordinateBox, GeoCoordinateLine> dot, bool fixed_width)
 {
     _dot = dot;
     _color = color;
     _x = radius;
     _y = radius;
     _fixed_width = fixed_width;
     _edge_color = -1;
 }