coordinate-system 5.2.0__tar.gz → 5.2.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (24) hide show
  1. {coordinate_system-5.2.0/coordinate_system.egg-info → coordinate_system-5.2.2}/PKG-INFO +10 -3
  2. {coordinate_system-5.2.0 → coordinate_system-5.2.2}/README.md +9 -2
  3. {coordinate_system-5.2.0 → coordinate_system-5.2.2}/coordinate_system/__init__.py +8 -0
  4. coordinate_system-5.2.2/coordinate_system/fourier_spectral.py +763 -0
  5. coordinate_system-5.2.2/coordinate_system/qframes.py +675 -0
  6. {coordinate_system-5.2.0 → coordinate_system-5.2.2/coordinate_system.egg-info}/PKG-INFO +10 -3
  7. {coordinate_system-5.2.0 → coordinate_system-5.2.2}/coordinate_system.egg-info/SOURCES.txt +1 -2
  8. {coordinate_system-5.2.0 → coordinate_system-5.2.2}/coordinate_system_binding.cpp +26 -0
  9. {coordinate_system-5.2.0 → coordinate_system-5.2.2}/pmsys_minimal.hpp +35 -6
  10. {coordinate_system-5.2.0 → coordinate_system-5.2.2}/setup.py +2 -2
  11. coordinate_system-5.2.0/MATHEMATICAL_FOUNDATION.md +0 -800
  12. coordinate_system-5.2.0/coordinate_system/fourier_frames.py +0 -530
  13. coordinate_system-5.2.0/coordinate_system/fourier_spectral.py +0 -376
  14. {coordinate_system-5.2.0 → coordinate_system-5.2.2}/LICENSE +0 -0
  15. {coordinate_system-5.2.0 → coordinate_system-5.2.2}/MANIFEST.in +0 -0
  16. {coordinate_system-5.2.0 → coordinate_system-5.2.2}/coordinate_system/curvature.py +0 -0
  17. {coordinate_system-5.2.0 → coordinate_system-5.2.2}/coordinate_system/curve_interpolation.py +0 -0
  18. {coordinate_system-5.2.0 → coordinate_system-5.2.2}/coordinate_system/differential_geometry.py +0 -0
  19. {coordinate_system-5.2.0 → coordinate_system-5.2.2}/coordinate_system/visualization.py +0 -0
  20. {coordinate_system-5.2.0 → coordinate_system-5.2.2}/coordinate_system.egg-info/dependency_links.txt +0 -0
  21. {coordinate_system-5.2.0 → coordinate_system-5.2.2}/coordinate_system.egg-info/not-zip-safe +0 -0
  22. {coordinate_system-5.2.0 → coordinate_system-5.2.2}/coordinate_system.egg-info/requires.txt +0 -0
  23. {coordinate_system-5.2.0 → coordinate_system-5.2.2}/coordinate_system.egg-info/top_level.txt +0 -0
  24. {coordinate_system-5.2.0 → coordinate_system-5.2.2}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: coordinate_system
3
- Version: 5.2.0
3
+ Version: 5.2.2
4
4
  Summary: High-performance 3D coordinate system with C2-continuous curve interpolation, Fourier frames with operator overloading, and advanced 3D visualization
5
5
  Home-page: https://github.com/panguojun/Coordinate-System
6
6
  Author: PanGuoJun
@@ -50,13 +50,13 @@ Requires-Dist: matplotlib>=3.3.0
50
50
  [![License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE)
51
51
 
52
52
  **Author:** PanGuoJun
53
- **Version:** 5.2.0
53
+ **Version:** 5.2.1
54
54
  **License:** MIT
55
55
 
56
56
 
57
57
  ---
58
58
 
59
- ## What's New in v5.2.0 (2025-12-01)
59
+ ## What's New in v5.2.1 (2025-12-01)
60
60
 
61
61
  ### Fourier Frames with Operator Overloading
62
62
 
@@ -94,6 +94,13 @@ Requires-Dist: matplotlib>=3.3.0
94
94
  - Full English documentation for global distribution
95
95
 
96
96
 
97
+
98
+ ### v5.2.1 (2025-12-01) - Handedness Control
99
+ - ✨ **New**: C++ level handedness control (`set_handedness('left'/'right')`)
100
+ - 🔧 **Fixed**: Frenet frames now respect coordinate system handedness
101
+ - 📚 **Improved**: Global handedness setting for consistent behavior
102
+
103
+
97
104
  ## 🆕 What's New in v4.0.0
98
105
 
99
106
  ### 🎯 Fourier Spectral Geometry Analysis
@@ -8,13 +8,13 @@
8
8
  [![License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE)
9
9
 
10
10
  **Author:** PanGuoJun
11
- **Version:** 5.2.0
11
+ **Version:** 5.2.1
12
12
  **License:** MIT
13
13
 
14
14
 
15
15
  ---
16
16
 
17
- ## What's New in v5.2.0 (2025-12-01)
17
+ ## What's New in v5.2.1 (2025-12-01)
18
18
 
19
19
  ### Fourier Frames with Operator Overloading
20
20
 
@@ -52,6 +52,13 @@
52
52
  - Full English documentation for global distribution
53
53
 
54
54
 
55
+
56
+ ### v5.2.1 (2025-12-01) - Handedness Control
57
+ - ✨ **New**: C++ level handedness control (`set_handedness('left'/'right')`)
58
+ - 🔧 **Fixed**: Frenet frames now respect coordinate system handedness
59
+ - 📚 **Improved**: Global handedness setting for consistent behavior
60
+
61
+
55
62
  ## 🆕 What's New in v4.0.0
56
63
 
57
64
  ### 🎯 Fourier Spectral Geometry Analysis
@@ -4,6 +4,14 @@ from .coordinate_system import vec3, vec2
4
4
  from .coordinate_system import quat
5
5
  from .coordinate_system import coord3
6
6
 
7
+
8
+ # Coordinate system handedness control (v5.2.1+)
9
+ from .coordinate_system import (
10
+ set_handedness,
11
+ get_handedness,
12
+ is_left_handed,
13
+ is_right_handed
14
+ )
7
15
  # Differential geometry module (v3.3.0+)
8
16
  from .differential_geometry import (
9
17
  # Classes