origametry 0.0.6

Creator: codyrutscher

Last updated:

Add to Cart

Description:

origametry 0.0.6

Origametry
Python package to perform calculations using the Huzita-Justin axioms for 2-dimensional origami

Documentation: https://origametry.readthedocs.io

Installation
pip install origametry

Getting Started
From only a few starting points, you can generate complex sequences of folds
from origametry import Point, fold, show

point_1 = Point(0, 0)
point_2 = Point(2, 1)

# axiom 2: point onto point
line = fold(point_1, point_2)

# axiom 5: point onto line through another point (2 solutions)
creases = fold(point_1, line, point_2, point_2)

And view your resulting crease pattern
show(point_1, point_2, line, creases=creases)

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.