Represents a point in a 2D space.
Definition point.hpp:33
Point(float x, float y)
Constructs a Point with specified coordinates.
Definition point.hpp:54
Point()
Default constructor that initializes the point to the origin (0,0).
Definition point.hpp:47
float x
X-coordinate of the point.
Definition point.hpp:37
float y
Y-coordinate of the point.
Definition point.hpp:42