Yes sure,
To add a point, you do:
From geomath import point
A = point.Point(x,y)
A.distance(PointB)
A.mispoint(PointB)
A.quadrant()
To make usage of the Figure class
From geomath import figure
Square = figure.Figure()
Square.addpoints(pointA, PointB, PointC, PointD)
To make use of the line class
From geomath import line
Line = line.Line(PointA, PointB )
Line.equation()
These are some basic functions, the others we are still implementing.
Tnx,
Vinicius Mesel