A Python library for mathematics - algebra, calculus, geometry and more.
geometry: 3D geometry module (points, vectors, lines, planes)
cd math4py
pip install -e .import math4py as mp
# Using geometry module
from math4py.geometry import Point, Vector, Line, Plane
p1 = Point(0, 0, 0)
p2 = Point(1, 0, 0)
v = Vector(0, 1, 0)
line = Line(p1, v)pip install -e ".[dev]"
pytest