File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 )
Original file line number Diff line number Diff line change 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"""
2321from __future__ import annotations
2422from itertools import combinations
3634 'w'
3735]
3836
39- __version__ = '0.0 .0'
37+ __version__ = '0.1 .0'
4038
4139NAMES = 'xyzw'
4240
You can’t perform that action at this time.
0 commit comments