I am trying to create a class in python titled \"Point.\" I am trying to create a point on a coordinate plane x and y and track them. As well as find the distance between th
Hum, why not use complex instead of a point class? It has all the properties you are searching for and more (such as rotation).
Here is an example to "OOP" the complex with a pedantic notation:
https://gist.github.com/jul/9286835