Skip to content

Commit e047f53

Browse files
committed
Bump version
1 parent b2dcfbb commit e047f53

File tree

2 files changed

+16
-20
lines changed

2 files changed

+16
-20
lines changed

README.md

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,12 @@ pip install multivectors
77
```
88

99
## Usage
10-
```py
11-
import math
12-
from multivectors import x, y, z
13-
14-
v = 2*x + 3*y + 4*z
15-
print(v.rotate(math.pi/2, x * y))
16-
```
17-
Output:
18-
```
10+
```python
11+
>>> import math
12+
>>> from multivectors import x, y, z
13+
>>> v = 2*x + 3*y + 4*z
14+
>>> print(v.rotate(math.pi/2, x * y))
1915
(-3.00x + 2.00y + 4.00z)
20-
```
16+
```
17+
18+
For more see [the docs](https://github.com/Kenny2github/MultiVectors/wiki)

multivectors.py

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,15 @@
88
```
99
1010
## Usage
11-
```py
12-
import math
13-
from multivectors import x, y, z
14-
15-
v = 2*x + 3*y + 4*z
16-
print(v.rotate(math.pi/2, x * y))
17-
```
18-
Output:
19-
```
11+
```python
12+
>>> import math
13+
>>> from multivectors import x, y, z
14+
>>> v = 2*x + 3*y + 4*z
15+
>>> print(v.rotate(math.pi/2, x * y))
2016
(-3.00x + 2.00y + 4.00z)
2117
```
18+
19+
For more see [the docs](https://github.com/Kenny2github/MultiVectors/wiki)
2220
"""
2321
from __future__ import annotations
2422
from itertools import combinations
@@ -36,7 +34,7 @@
3634
'w'
3735
]
3836

39-
__version__ = '0.0.0'
37+
__version__ = '0.1.0'
4038

4139
NAMES = 'xyzw'
4240

0 commit comments

Comments
 (0)