Metadata-Version: 2.4
Name: draw-triangle-ajay
Version: 0.0.2
Summary: A Python library to draw geometric triangles using matplotlib and numpy
Author: Ajay Kumar
License: MIT
Project-URL: Homepage, https://github.com/ajstyle007/draw-triangle-ajay
Keywords: geometry,triangle,matplotlib,visualization
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy
Requires-Dist: matplotlib
Dynamic: license-file

# draw_triangle

Python library to draw geometric triangle shapes using numpy and matplotlib.

## Features

- Equilateral triangle
- Right triangle
- Isosceles triangle
- Custom triangle using vertices

---

## Installation

pip install draw-triangle-ajay

---

## Usage

### Equilateral Triangle

```python
from draw_triangle import equilateral
equilateral(5)
```

### Right Triangle

```python
from draw_triangle import right_triangle
right_triangle(5, 4)
```

---

### Isosceles Triangle

```python
from draw_triangle import isosceles
isosceles(6, 5)
```

---

### Custom Triangle

```python
from draw_triangle import draw_triangle

draw_triangle([(0, 0), (4, 0), (2, 3)])
```

---


## Dependencies

- numpy
- matplotlib

---

## Author

Ajay Kumar
