Constructive and analytic geometry — points, lines, curves, angles, and 2D shapes. This is our biggest growth area.
Abstand((1,2), (4,6)) → 5 Abstand((0,0), (3,4)) → 5
Winkel((1,0), (0,1)) → 90° Winkel((1,1), (0,0), (1,0)) → 45°
Flächeninhalt(Kreis((0,0), 5)) → 78.54 Umfang(Kreis((0,0), 5)) → 31.42
Radius(Kreis((0,0), 5)) → 5
Steigung(Gerade((0,0), (2,4))) → 2
Mittelpunkt((1,0), (3,4)) → (2, 2)
Gerade((0,0), (1,2)) → line: y = 2x Strecke((0,0), (3,4)) → length 5
Kreis((0,0), 5) → circle x²+y²=25 Kreis((0,0), (5,0), (0,5)) → circumscribed circle
Vieleck((0,0),(4,0),(4,3),(0,3)) → rectangle RegelmaessigesVieleck((0,0),(1,0),6) → hexagon
Senkrechte((2,1), y=3x+1) → y = -x/3 + 5/3
Schneide(y=x^2, y=x+2) → {(-1,1), (2,4)}
Länge(Strecke((0,0),(3,4))) → 5
Tangente((1,1), x^2) → y = 2x - 1
SindParallel(Gerade1, Gerade2) → true/false SindNormal(v1, v2) → true/false
Spiegelung((3,2), y=x) → (2, 3) Drehung((1,0), (0,0), 90°) → (0, 1)