Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Kenny2github committed Jun 30, 2021
1 parent b2dcfbb commit e047f53
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 20 deletions.
18 changes: 8 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,12 @@ pip install multivectors
```

## Usage
```py
import math
from multivectors import x, y, z

v = 2*x + 3*y + 4*z
print(v.rotate(math.pi/2, x * y))
```
Output:
```
```python
>>> import math
>>> from multivectors import x, y, z
>>> v = 2*x + 3*y + 4*z
>>> print(v.rotate(math.pi/2, x * y))
(-3.00x + 2.00y + 4.00z)
```
```

For more see [the docs](https://github.com/Kenny2github/MultiVectors/wiki)
18 changes: 8 additions & 10 deletions multivectors.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,15 @@
```
## Usage
```py
import math
from multivectors import x, y, z
v = 2*x + 3*y + 4*z
print(v.rotate(math.pi/2, x * y))
```
Output:
```
```python
>>> import math
>>> from multivectors import x, y, z
>>> v = 2*x + 3*y + 4*z
>>> print(v.rotate(math.pi/2, x * y))
(-3.00x + 2.00y + 4.00z)
```
For more see [the docs](https://github.com/Kenny2github/MultiVectors/wiki)
"""
from __future__ import annotations
from itertools import combinations
Expand All @@ -36,7 +34,7 @@
'w'
]

__version__ = '0.0.0'
__version__ = '0.1.0'

NAMES = 'xyzw'

Expand Down

0 comments on commit e047f53

Please sign in to comment.