point module

class point.TPoint(x=0, y=0)

Bases: object

Class represents a single point on a two-dimensional plane.

Parameters:
  • x (float) – x coordinate of the point.
  • y (float) – y coordinate of the point.