Point
Represents a point in a three-dimensional space.
- class miney.Point(x: int | float = 0, y: int | float = 0, z: int | float = 0)[source]
A point is a position inside a three dimensional system.
- center(b: Point) Point[source]
Get the exact point in the center between this point and point b.
- Parameters:
b – Another Point
- Returns:
The center point