Metadata-Version: 2.1
Name: EasyVectorsPy
Version: 0.0.5
Summary: library that helps when working with coordinates like(Pillow, Pygame)
Home-page: https://github.com/nellle/EasyVectorsPy
Author: Nellle
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/nellle/EasyVectorsPy/issues
Project-URL: Wiki, https://github.com/nellle/EasyVectorsPy/wiki
Keywords: python,vectors,easy,easy vectors
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3.8
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown


# EasyVectorsPy
## Eng 

library that helps when working with coordinates like(Pillow, Pygame)

### Examples ###

```python 
from EasyVectors import Vector2

vector = Vector2(10, 67)
print(vector.get('x'))
```

This code will give the output 10
```python 
from EasyVectors import Vector2

vector = Vector2()
print(vector.getstr())
```
This code will give the output X 0  Y 0 
```python 
from EasyVectors import Vector2

vector = Vector2()
vector2 = Vector2(56, 81)
vector.update(8 , 1)

print(vector.distance_to(vector2))
```
This code will give the output 93.2952303175248 

**A description of all methods can be found on the Wiki**

## Ru

Библиотека для упрощения работы с координатами, например(Pillow, Pygame)

### Примеры ###

```python 
from EasyVectors import Vector2

vector = Vector2(10, 67)
print(vector.get('x'))
```

Этот код выведет 10

```python 
from EasyVectors import Vector2

vector = Vector2()
print(vector.getstr())
```

Этот код выведет X 0  Y 0 

```python 
from EasyVectors import Vector2

vector = Vector2()
vector2 = Vector2(56, 81)
vector.update(8 , 1)

print(vector.distance_to(vector2))
```
Этот код выведет 93.2952303175248 

**Описание всех методов можно найти на Wiki**


