Metadata-Version: 2.1
Name: JadeGeometry
Version: 1.0.9
Summary: Package Used for solving geometry equations
Author: Jade
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE


### Jade-Geometry
``pip install JadeGeometry``
####Example:
```py
import JadeGeometry as JG

sa = JG.rect_prism(1, 5, 19)
print(f"The surface area of the rectangular prism is {sa}")

all = JG.add(sa, JG.rect_prism(4, 1, 29))
print(f"And added by my second prism will be will be {all}")
```


