[]
Implicit convert a Point value to a Coordinate object.
public static implicit operator Coordinate(Point value)
Type | Name | Description |
---|---|---|
Point | value | A Point value that will be convert to a Coordinate object. |
Type | Description |
---|---|
Coordinate | A Coordinate object indicates the converted object. |
The reason of providing implict converting is that Point and Coordinate is same conception in drawing.
Implicit convert a Coordinate value to a Point object.
public static implicit operator Point(Coordinate value)
Type | Name | Description |
---|---|---|
Coordinate | value | A Coordinate object that will be convert to a Coordinate object. |
Type | Description |
---|---|
Point | A Point value indicates the converted object. |