Midpoint Command
- Midpoint( <Segment> )
-
Returns the midpoint of the segment.
Let s = Segment((1, 1), (1, 5))
. Midpoint(s)
yields (1, 3).
- Midpoint( <Conic> )
-
Returns the center of the conic.
Midpoint(x^2 + y^2 = 4)
yields (0, 0).
- Midpoint( <Interval> )
-
Returns the midpoint of the interval (as number).
Midpoint(2 < x < 4)
yields 3.
- Midpoint( <Point>, <Point> )
-
Returns the midpoint of two points.
Midpoint((1, 1), (5, 1))
yields (3, 1).
- Midpoint( <Quadric> )
-
Returns the midpoint of the given quadric (e.g. sphere, cone, etc.)
Midpoint(x^2 + y^2 + z^2 = 1)
yields (0, 0, 0).
See also Midpoint or Center tool. |