|
5 | 5 | # # |
6 | 6 | ########################### |
7 | 7 |
|
| 8 | +v3.0.0 |
| 9 | +------ |
| 10 | +Release date: 12-03-2025 |
| 11 | + |
| 12 | +This release includes only a breacking change with the function get_scale_tf. |
| 13 | +The Transform and Ray __call__ method is now recommended in replacement |
| 14 | +of the method __getitem__. The method __getitem__ is still here but has a |
| 15 | +depracated message |
| 16 | + |
| 17 | +* Improve the __str__ and __repr__ methods in case of multiple vectors, points, |
| 18 | + normals or rays |
| 19 | + |
| 20 | +* Replace the Transform and Ray classes method __getitem__ by the method __call__ |
| 21 | + |
| 22 | +* Multiple transformations is now possible with the Transform class |
| 23 | + - Allow 1-D calculations with several transformations and 1 point, vectors, ... |
| 24 | + - Allow 2-D calculations with several transformations and several points, vectors, ... |
| 25 | + - Allow diagonal calculations (case 2-D with option diag_calc=True) |
| 26 | + |
| 27 | +* Add sphinx documentation |
| 28 | + |
| 29 | +* Function get_scale_tf takes as input a Vector variable instead of 3 scalars |
| 30 | + |
| 31 | +* Add new option flatten to Tranform __call__ method |
| 32 | + - Instead of having a numpy array of Vector objects, the output can be only 1 Vector |
| 33 | + object where a flatten operation is made to x, y, z components of all vectors |
| 34 | + - Avoid loop operation then reduce the computational time |
| 35 | + |
| 36 | +* Function vec2ang now accepts Vector object with multiple vectors |
| 37 | + |
| 38 | +* Function ang2vec now accepts 1d ndarray theta and phi angles |
| 39 | + |
| 40 | + |
8 | 41 | v2.0.2 |
9 | 42 | ------ |
10 | 43 | Release date: 05-03-2025 |
@@ -97,7 +130,7 @@ Release date: 10-02-2025 |
97 | 130 |
|
98 | 131 | * Add new functions |
99 | 132 | - ang2vec |
100 | | - - vec2and |
| 133 | + - vec2ang |
101 | 134 |
|
102 | 135 | * Add the Disk class |
103 | 136 | - It can be a disk, a partial disk, an annulus or a partial annulus |
|
0 commit comments