Point
- class Point
A GeoGebra
Pointcan be constructed in the following ways:- Point(x, y)
Construct the point whose x-coordinate is
xand whose y-coordinate isy.
- Point(obj, t)
Construct the point which is a distance
talong the objectobj. What “along” means varies depending on what kind of objectobjis. For example, for a line segment,tvaries from 0 at the first point of the segment to 1 at the second point.
- property x
The current value of the Point’s x-coordinate as a Python
float.
- property y
The current value of the Point’s y-coordinate as a Python
float.
A
Pointalso has the following common properties:
See also