Metadata-Version: 2.1
Name: marksgeometrys
Version: 0.1
Summary: Calculate many figures area or volume
Home-page: https://github.com/marc1fino/marksgeometrys
Author: mark. (Marc Pérez)
Author-email: <marcperezcarrasco2010@gmail.com>
License: MIT
Keywords: python,maths,figures,area,volume,mathematical figures
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: math

# marksgeometrys

A mathematical library to calculate many figures area or volume.

Developed by Marc Pérez (c) 2024

## Examples of How To Use

Calculate The Area of a 2D Figure

```python
from marksgeometrys import Square

print(Square(side=3).area())
```

Calculate The Area of a 3D Figure

```python
from marksgeometrys import Icosahedron

print(Icosahedron(side=10).area())
```

Calculate The Volume of a 3D Figure

```python
from marksgeometrys import PyramidTrunk

print(PyramideTrunk(sbside=5, sidesnumber=7, sbapothem=4, lbside=10, lbapothem=8, latlargebase=8, latsmallbase=5, latheight=9, height=10.5).volume())
```
