coordinate-system 4.0.3__cp313-cp313-win_amd64.whl → 5.2.0__cp313-cp313-win_amd64.whl
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.
- coordinate_system/__init__.py +42 -4
- coordinate_system/coordinate_system.cp313-win_amd64.pyd +0 -0
- coordinate_system/curve_interpolation.py +507 -0
- coordinate_system/fourier_frames.py +530 -0
- coordinate_system/visualization.py +666 -0
- {coordinate_system-4.0.3.dist-info → coordinate_system-5.2.0.dist-info}/METADATA +47 -4
- coordinate_system-5.2.0.dist-info/RECORD +13 -0
- coordinate_system-4.0.3.dist-info/RECORD +0 -10
- {coordinate_system-4.0.3.dist-info → coordinate_system-5.2.0.dist-info}/LICENSE +0 -0
- {coordinate_system-4.0.3.dist-info → coordinate_system-5.2.0.dist-info}/WHEEL +0 -0
- {coordinate_system-4.0.3.dist-info → coordinate_system-5.2.0.dist-info}/top_level.txt +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: coordinate_system
|
|
3
|
-
Version:
|
|
4
|
-
Summary: High-performance 3D coordinate system
|
|
3
|
+
Version: 5.2.0
|
|
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
|
|
7
7
|
Author-email: 18858146@qq.com
|
|
@@ -9,7 +9,7 @@ License: MIT
|
|
|
9
9
|
Project-URL: Bug Reports, https://github.com/panguojun/Coordinate-System/issues
|
|
10
10
|
Project-URL: Source, https://github.com/panguojun/Coordinate-System
|
|
11
11
|
Project-URL: Documentation, https://github.com/panguojun/Coordinate-System/blob/main/README.md
|
|
12
|
-
Keywords: 3d math vector quaternion coordinate-system geometry graphics spatial-computing differential-geometry curvature
|
|
12
|
+
Keywords: 3d math vector quaternion coordinate-system geometry graphics spatial-computing differential-geometry curvature curve-interpolation c2-continuity frenet-frames fourier-transform operator-overloading quantum-coordinates heisenberg-uncertainty visualization rgb-frames catmull-rom squad
|
|
13
13
|
Platform: Windows
|
|
14
14
|
Platform: Linux
|
|
15
15
|
Platform: macOS
|
|
@@ -37,6 +37,8 @@ Classifier: Operating System :: MacOS
|
|
|
37
37
|
Requires-Python: >=3.7
|
|
38
38
|
Description-Content-Type: text/markdown
|
|
39
39
|
License-File: LICENSE
|
|
40
|
+
Requires-Dist: numpy>=1.19.0
|
|
41
|
+
Requires-Dist: matplotlib>=3.3.0
|
|
40
42
|
|
|
41
43
|
# Coordinate System Library
|
|
42
44
|
|
|
@@ -48,9 +50,50 @@ License-File: LICENSE
|
|
|
48
50
|
[](LICENSE)
|
|
49
51
|
|
|
50
52
|
**Author:** PanGuoJun
|
|
51
|
-
**Version:**
|
|
53
|
+
**Version:** 5.2.0
|
|
52
54
|
**License:** MIT
|
|
53
55
|
|
|
56
|
+
|
|
57
|
+
---
|
|
58
|
+
|
|
59
|
+
## What's New in v5.2.0 (2025-12-01)
|
|
60
|
+
|
|
61
|
+
### Fourier Frames with Operator Overloading
|
|
62
|
+
|
|
63
|
+
**New Module: `fourier_frames`** - Elegant quantum coordinate transformations
|
|
64
|
+
|
|
65
|
+
- **Operator Overloading Support**: Intuitive syntax for Fourier transforms
|
|
66
|
+
- `F_p @ psi` - Matrix multiplication operator
|
|
67
|
+
- `F_p * psi` - Multiplication operator
|
|
68
|
+
- `psi | F_p` - Bra-ket notation
|
|
69
|
+
- `~F_x` - Dual frame operator
|
|
70
|
+
- **Quantum State Representation**: `QuantumState` and `StateVector` classes
|
|
71
|
+
- **Heisenberg Uncertainty**: Built-in uncertainty principle computations
|
|
72
|
+
- **Position <-> Momentum Transforms**: Seamless coordinate basis transformations
|
|
73
|
+
|
|
74
|
+
### C2-Continuous Curve Interpolation
|
|
75
|
+
|
|
76
|
+
**Enhanced Module: `curve_interpolation`** - Second-order smooth curves
|
|
77
|
+
|
|
78
|
+
- **C2-Continuity**: Catmull-Rom spline for position interpolation
|
|
79
|
+
- **SQUAD Interpolation**: Spherical Quadrangle for smooth quaternion interpolation
|
|
80
|
+
- **13x Smoother**: Reduced maximum curvature from 13.93 to 1.05
|
|
81
|
+
|
|
82
|
+
### Advanced 3D Visualization
|
|
83
|
+
|
|
84
|
+
**New Module: `visualization`** - Professional curve and frame rendering
|
|
85
|
+
|
|
86
|
+
- **RGB Frenet Frames**: Red=Tangent, Green=Normal, Blue=Binormal
|
|
87
|
+
- **3D Curve Rendering**: High-quality visualization with matplotlib
|
|
88
|
+
- **Export Support**: Save PNG/PDF outputs
|
|
89
|
+
|
|
90
|
+
### Documentation
|
|
91
|
+
|
|
92
|
+
- [Curve Interpolation Guide](CURVE_INTERPOLATION_README.md)
|
|
93
|
+
- [C2 Interpolation Guide](C2_INTERPOLATION_GUIDE.md)
|
|
94
|
+
- Full English documentation for global distribution
|
|
95
|
+
|
|
96
|
+
|
|
54
97
|
## 🆕 What's New in v4.0.0
|
|
55
98
|
|
|
56
99
|
### 🎯 Fourier Spectral Geometry Analysis
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
coordinate_system/__init__.py,sha256=UX0S95AA1sl5WihawBEk3Mo_d7iCCFjgOR6OU23rjnI,9596
|
|
2
|
+
coordinate_system/coordinate_system.cp313-win_amd64.pyd,sha256=ZDSj_Bc0crSUIlc2a7gSqQSmNJoSSowq19gPsZierTA,492544
|
|
3
|
+
coordinate_system/curvature.py,sha256=zrgY9QEuFq2tz0HB4mvXfPV-GwMpeE-F5cM--U8Ihfo,11541
|
|
4
|
+
coordinate_system/curve_interpolation.py,sha256=_HKsWozBNlD8TaVX1K0dzWTNFa_96Bqu6F_K4xhceSg,14753
|
|
5
|
+
coordinate_system/differential_geometry.py,sha256=whbgMyWQB4AUbZbiaDDAY6YZD7CHs1BVtnvOLN_gqQE,20628
|
|
6
|
+
coordinate_system/fourier_frames.py,sha256=FtejtRP0pYibCbpsJcsCUwmn8qlT12br7LcibqpwqFM,18080
|
|
7
|
+
coordinate_system/fourier_spectral.py,sha256=0rA9_ZS7W-pSKQ1aD9Ds93An5rQ14EWZWM43mOC_UIc,16496
|
|
8
|
+
coordinate_system/visualization.py,sha256=4yWKC26xGXIt1Nk1zI9e6wAXWfARhkXBtql9nzAbLiU,19247
|
|
9
|
+
coordinate_system-5.2.0.dist-info/LICENSE,sha256=tDnRkJxBYPzWdfh2gArRqrUPJxQZRZHJVs68qqBHIq4,1083
|
|
10
|
+
coordinate_system-5.2.0.dist-info/METADATA,sha256=0aeZtNpyUe7kq4KqLTuaFUnMfHLtIijsW7h1Txr8Fxo,22466
|
|
11
|
+
coordinate_system-5.2.0.dist-info/WHEEL,sha256=4-iQBlRoDdX1wfPofc7KLWa5Cys4eZSgXs6GVU8fKlQ,101
|
|
12
|
+
coordinate_system-5.2.0.dist-info/top_level.txt,sha256=R6LguuPPZ5esrIsDTqPGi9UxCvZPIXwn7KRKX87c79M,18
|
|
13
|
+
coordinate_system-5.2.0.dist-info/RECORD,,
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
coordinate_system/__init__.py,sha256=Qhg-sS6SCHD0TMQ1MaATyEajuv9m8Ip91xewaohpAek,8600
|
|
2
|
-
coordinate_system/coordinate_system.cp313-win_amd64.pyd,sha256=K7z-jG4p_jSYxjii1ZZ5Bs3lOjCTC5AZGT1VR-vbUyY,495616
|
|
3
|
-
coordinate_system/curvature.py,sha256=zrgY9QEuFq2tz0HB4mvXfPV-GwMpeE-F5cM--U8Ihfo,11541
|
|
4
|
-
coordinate_system/differential_geometry.py,sha256=whbgMyWQB4AUbZbiaDDAY6YZD7CHs1BVtnvOLN_gqQE,20628
|
|
5
|
-
coordinate_system/fourier_spectral.py,sha256=0rA9_ZS7W-pSKQ1aD9Ds93An5rQ14EWZWM43mOC_UIc,16496
|
|
6
|
-
coordinate_system-4.0.3.dist-info/LICENSE,sha256=tDnRkJxBYPzWdfh2gArRqrUPJxQZRZHJVs68qqBHIq4,1083
|
|
7
|
-
coordinate_system-4.0.3.dist-info/METADATA,sha256=0_Pgr__XrTeISK7jJS6gS8ANFJSJW2r2IKCdPsIb-wg,20872
|
|
8
|
-
coordinate_system-4.0.3.dist-info/WHEEL,sha256=4-iQBlRoDdX1wfPofc7KLWa5Cys4eZSgXs6GVU8fKlQ,101
|
|
9
|
-
coordinate_system-4.0.3.dist-info/top_level.txt,sha256=R6LguuPPZ5esrIsDTqPGi9UxCvZPIXwn7KRKX87c79M,18
|
|
10
|
-
coordinate_system-4.0.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|