coordinate-system 5.2.0__cp313-cp313-win_amd64.whl → 5.2.1__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.
@@ -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
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: coordinate_system
3
- Version: 5.2.0
3
+ Version: 5.2.1
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
@@ -0,0 +1,19 @@
1
+ coordinate_system/__init__.py,sha256=j6j3iuUsdQvIIye2X45rL2uxRS4Tj_tLwEl-h5ZabmY,9769
2
+ coordinate_system/coordinate_system.cp313-win_amd64.pyd,sha256=c2HBfMrDxwh80rrtz98Af16JRkgofdPV65xKa0yEYKw,499712
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/__pycache__/__init__.cpython-313.pyc,sha256=LZYZ4se6QXEGQ4IDjevOTN1FhywfBmY8tI3zEw__wXc,8571
10
+ coordinate_system/__pycache__/curvature.cpython-313.pyc,sha256=UqC3CYGfotDrk2iGjBynROAn--mRMVHSP1dBIXqcegI,15054
11
+ coordinate_system/__pycache__/curve_interpolation.cpython-313.pyc,sha256=tyQMzLGKtn1LSAp7-zg3OF94-HSw3030xwy8soQnNb0,17515
12
+ coordinate_system/__pycache__/differential_geometry.cpython-313.pyc,sha256=juZ1LeWTSu8mZzI69l0yLy7Z23J5_X-9dCVRhrXuEuU,28012
13
+ coordinate_system/__pycache__/fourier_spectral.cpython-313.pyc,sha256=F1BavgVddiBZADEWaWY_Md4tjJns7_EScGmifAKyXms,23093
14
+ coordinate_system/__pycache__/visualization.cpython-313.pyc,sha256=MsR4w3spDIel2eI_u6Wyn_80VbRM4jPg4hw-C0TFSQE,23470
15
+ coordinate_system-5.2.1.dist-info/LICENSE,sha256=tDnRkJxBYPzWdfh2gArRqrUPJxQZRZHJVs68qqBHIq4,1083
16
+ coordinate_system-5.2.1.dist-info/METADATA,sha256=YOHnMnxw2aeizqeHb6dEKso_d2VH_FR_YXwj8ac_-CI,22744
17
+ coordinate_system-5.2.1.dist-info/WHEEL,sha256=4-iQBlRoDdX1wfPofc7KLWa5Cys4eZSgXs6GVU8fKlQ,101
18
+ coordinate_system-5.2.1.dist-info/top_level.txt,sha256=R6LguuPPZ5esrIsDTqPGi9UxCvZPIXwn7KRKX87c79M,18
19
+ coordinate_system-5.2.1.dist-info/RECORD,,
@@ -1,13 +0,0 @@
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,,