coordinate-system 4.0.2__tar.gz → 4.0.3__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.
- {coordinate_system-4.0.2/coordinate_system.egg-info → coordinate_system-4.0.3}/PKG-INFO +1 -1
- {coordinate_system-4.0.2 → coordinate_system-4.0.3/coordinate_system.egg-info}/PKG-INFO +1 -1
- {coordinate_system-4.0.2 → coordinate_system-4.0.3}/coordinate_system_binding.cpp +1 -0
- {coordinate_system-4.0.2 → coordinate_system-4.0.3}/setup.py +2 -2
- {coordinate_system-4.0.2 → coordinate_system-4.0.3}/LICENSE +0 -0
- {coordinate_system-4.0.2 → coordinate_system-4.0.3}/MANIFEST.in +0 -0
- {coordinate_system-4.0.2 → coordinate_system-4.0.3}/MATHEMATICAL_FOUNDATION.md +0 -0
- {coordinate_system-4.0.2 → coordinate_system-4.0.3}/README.md +0 -0
- {coordinate_system-4.0.2 → coordinate_system-4.0.3}/coordinate_system/__init__.py +0 -0
- {coordinate_system-4.0.2 → coordinate_system-4.0.3}/coordinate_system/curvature.py +0 -0
- {coordinate_system-4.0.2 → coordinate_system-4.0.3}/coordinate_system/differential_geometry.py +0 -0
- {coordinate_system-4.0.2 → coordinate_system-4.0.3}/coordinate_system/fourier_spectral.py +0 -0
- {coordinate_system-4.0.2 → coordinate_system-4.0.3}/coordinate_system.egg-info/SOURCES.txt +0 -0
- {coordinate_system-4.0.2 → coordinate_system-4.0.3}/coordinate_system.egg-info/dependency_links.txt +0 -0
- {coordinate_system-4.0.2 → coordinate_system-4.0.3}/coordinate_system.egg-info/not-zip-safe +0 -0
- {coordinate_system-4.0.2 → coordinate_system-4.0.3}/coordinate_system.egg-info/top_level.txt +0 -0
- {coordinate_system-4.0.2 → coordinate_system-4.0.3}/pmsys_minimal.hpp +0 -0
- {coordinate_system-4.0.2 → coordinate_system-4.0.3}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: coordinate_system
|
|
3
|
-
Version: 4.0.
|
|
3
|
+
Version: 4.0.3
|
|
4
4
|
Summary: High-performance 3D coordinate system library with right-handed conventions, Intrinsic Gradient Operator method for curvature computation, achieving machine-precision accuracy
|
|
5
5
|
Home-page: https://github.com/panguojun/Coordinate-System
|
|
6
6
|
Author: PanGuoJun
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: coordinate_system
|
|
3
|
-
Version: 4.0.
|
|
3
|
+
Version: 4.0.3
|
|
4
4
|
Summary: High-performance 3D coordinate system library with right-handed conventions, Intrinsic Gradient Operator method for curvature computation, achieving machine-precision accuracy
|
|
5
5
|
Home-page: https://github.com/panguojun/Coordinate-System
|
|
6
6
|
Author: PanGuoJun
|
|
@@ -337,6 +337,7 @@ PYBIND11_MODULE(coordinate_system, m) {
|
|
|
337
337
|
|
|
338
338
|
// Methods
|
|
339
339
|
.def("Q", [](const coord3& self) { return self.Q(); }, "Get rotation as quaternion")
|
|
340
|
+
.def("R", [](const coord3& self) { return coord3(self.R()); }, "Get rotation as coord3")
|
|
340
341
|
.def("P", &coord3::pos, "Get position")
|
|
341
342
|
.def("V", &coord3::tovec, "Convert to vector")
|
|
342
343
|
.def("normalize", &coord3::normalize, "Normalize axes")
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
setup.py - Cross-platform setup for coordinate_system package
|
|
3
3
|
|
|
4
4
|
Author: PanGuoJun
|
|
5
|
-
Version: 4.0.
|
|
5
|
+
Version: 4.0.3
|
|
6
6
|
License: MIT
|
|
7
7
|
"""
|
|
8
8
|
|
|
@@ -69,7 +69,7 @@ ext_modules = [
|
|
|
69
69
|
|
|
70
70
|
setup(
|
|
71
71
|
name='coordinate_system',
|
|
72
|
-
version='4.0.
|
|
72
|
+
version='4.0.3',
|
|
73
73
|
packages=find_packages(),
|
|
74
74
|
ext_modules=ext_modules, # Add extension modules
|
|
75
75
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{coordinate_system-4.0.2 → coordinate_system-4.0.3}/coordinate_system/differential_geometry.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{coordinate_system-4.0.2 → coordinate_system-4.0.3}/coordinate_system.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
{coordinate_system-4.0.2 → coordinate_system-4.0.3}/coordinate_system.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|