Default constructor
| 18 | |
| 19 | // Default constructor |
| 20 | Point::Point() : Point::Point(Coordinate(1, 0), BEZIER, AUTO) {} |
| 21 | |
| 22 | // Constructor which creates a single coordinate at X=1 |
| 23 | Point::Point(float y) : Point::Point(Coordinate(1, y), CONSTANT, AUTO) {} |