JnyJny / Geometry3

Computational geometry using Python 3.7 or later.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Geometry3

Latest version released on PyPi Apache license version 2.0 Python Versions

Geometry3 is a Python 3.7 package that provides

TL;DR

  1. Clone the repo and install
$ git clone https://github.com/JnyJny/Geometry3.git
$ cd Geometry3
$ pip3 install -r requirements.txt
  1. Install with pip
$ pip3 install -U geometry3

Uninstall with pip:

$ pip3 uninstall geometry3

Usage

Once installed,

from geometry3 import Point

o = Point()
p = Point(1,1,1)
o.is_origin == True
p.is_origin == False
p.distance(o)
p.midpoint(o)

About

Computational geometry using Python 3.7 or later.


Languages

Language:Python 95.9%Language:Makefile 4.1%