Skip to content

ccc-py/math4py

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

50 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

math4py

A Python library for mathematics - algebra, calculus, geometry and more.

Modules

  • geometry: 3D geometry module (points, vectors, lines, planes)

Installation

cd math4py
pip install -e .

Usage

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)

Development

pip install -e ".[dev]"
pytest

About

A mathematical foundation library just like R for python.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors