agx-openplx 0.16.0__cp312-cp312-manylinux_2_39_x86_64.whl → 0.16.1__cp312-cp312-manylinux_2_39_x86_64.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.
- {agx_openplx-0.16.0.dist-info → agx_openplx-0.16.1.dist-info}/METADATA +2 -2
- agx_openplx-0.16.1.dist-info/RECORD +41 -0
- openplx/DriveTrain.py +1631 -3
- openplx/Physics.py +1270 -0
- openplx/_AgxOpenPlxPyApi.cpython-312-x86_64-linux-gnu.so +0 -0
- openplx/_DriveTrainSwig.cpython-312-x86_64-linux-gnu.so +0 -0
- openplx/_Physics1DSwig.cpython-312-x86_64-linux-gnu.so +0 -0
- openplx/_Physics3DSwig.cpython-312-x86_64-linux-gnu.so +0 -0
- openplx/_PhysicsSwig.cpython-312-x86_64-linux-gnu.so +0 -0
- openplx/_RoboticsSwig.cpython-312-x86_64-linux-gnu.so +0 -0
- openplx/_SimulationSwig.cpython-312-x86_64-linux-gnu.so +0 -0
- openplx/_TerrainSwig.cpython-312-x86_64-linux-gnu.so +0 -0
- openplx/_UrdfSwig.cpython-312-x86_64-linux-gnu.so +0 -0
- openplx/_VehiclesSwig.cpython-312-x86_64-linux-gnu.so +0 -0
- openplx/__init__.py +1 -1
- openplx/api.py +22 -0
- openplx/migrations.py +12 -0
- openplx/openplx_application.py +11 -1
- openplx/openplx_validate.py +8 -1
- agx_openplx-0.16.0.dist-info/RECORD +0 -41
- {agx_openplx-0.16.0.dist-info → agx_openplx-0.16.1.dist-info}/WHEEL +0 -0
- {agx_openplx-0.16.0.dist-info → agx_openplx-0.16.1.dist-info}/entry_points.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: agx-openplx
|
3
|
-
Version: 0.16.
|
3
|
+
Version: 0.16.1
|
4
4
|
Summary: AGX-OpenPLX python interface development
|
5
5
|
Home-page: https://pub.algoryx.dev/openplx/
|
6
6
|
License: Apache 2.0
|
@@ -20,7 +20,7 @@ Classifier: Programming Language :: Python :: 3.13
|
|
20
20
|
Classifier: Topic :: Scientific/Engineering :: Physics
|
21
21
|
Classifier: Topic :: Scientific/Engineering :: Visualization
|
22
22
|
Requires-Dist: agx (==2.39.1.0)
|
23
|
-
Requires-Dist: openplx-bundles (>=0.16.
|
23
|
+
Requires-Dist: openplx-bundles (>=0.16.1,<0.17.0)
|
24
24
|
Requires-Dist: pclick (>=0.5.1,<0.6.0)
|
25
25
|
Description-Content-Type: text/markdown
|
26
26
|
|
@@ -0,0 +1,41 @@
|
|
1
|
+
openplx/Core.py,sha256=jRoxPSkW3q82gqBfdmflahACINXUjZXYvCNP9W8DJ9c,270378
|
2
|
+
openplx/DriveTrain.py,sha256=8JY77L6iJ4MZz7w4BtUbjYNOfyfykpcOZGIqv4F-rLk,556448
|
3
|
+
openplx/Math.py,sha256=WpoPtnAKCnjslqWHMHghkXtgFp6zXrB4GHzmYCJxGNA,191321
|
4
|
+
openplx/Physics.py,sha256=LJYknSrndZaAVXu-rYMb2joHv2-4VXSqax62cG286GA,2155940
|
5
|
+
openplx/Physics1D.py,sha256=oXfa8-eVSWXYIIQzxgn1poeA05T2-pWllNQNBQ5DHdA,277473
|
6
|
+
openplx/Physics3D.py,sha256=S0tNZG-9Pq2B7kpRukG0PNB-yyEXqIXfc29sDNrOaxs,2307747
|
7
|
+
openplx/Robotics.py,sha256=4cPjIr_C7sQcGjt2n-9RaD4l6gmWZUYIb6fuKqBdRqU,763323
|
8
|
+
openplx/Simulation.py,sha256=fqw0yPLox1yukHSIFaU6CSSM5o2NxAKs8bS7jeWiUo4,46890
|
9
|
+
openplx/Terrain.py,sha256=VrNHuC2t4ifN0NsBlUxoGenZFJn5VqHRDcIZr9qDpus,186622
|
10
|
+
openplx/Urdf.py,sha256=JZOgJKl2LWXaoIOolp3T6Sn3_ERW3WeW0J4-vnmx2js,23938
|
11
|
+
openplx/Vehicles.py,sha256=U9s9zkHC4nQP4UwYD-v98_XKF_76ioAUT-HuguBlcl0,454721
|
12
|
+
openplx/Visuals.py,sha256=peaxL5pW2yIyS2LhPf0GkoOke-JGeJdsxhqSE5croRA,188828
|
13
|
+
openplx/_AgxOpenPlxPyApi.cpython-312-x86_64-linux-gnu.so,sha256=4VN3eUNU5sC638853aSE7HFNdd1wpc-90yIu8X7Jgqs,17507712
|
14
|
+
openplx/_CorePythonSwig.cpython-312-x86_64-linux-gnu.so,sha256=QVgFw7mk2XvuiO2U1Wmi32cz8oWy91-Cyac0CDZLZ8c,4806904
|
15
|
+
openplx/_DriveTrainSwig.cpython-312-x86_64-linux-gnu.so,sha256=GH9uHjrv9UCqzFDFprTkrsL3qX6fxFrW33jhwOYOEGs,10180736
|
16
|
+
openplx/_MathSwig.cpython-312-x86_64-linux-gnu.so,sha256=aWZ-Agda-1M4UphDuELsSbrepVrc3BvCScv8Y5hwLXI,2998264
|
17
|
+
openplx/_Physics1DSwig.cpython-312-x86_64-linux-gnu.so,sha256=SuovCSfZ4tgGE6S94oYMeiyDmuW7-niJ15CskfZ8tDI,5512808
|
18
|
+
openplx/_Physics3DSwig.cpython-312-x86_64-linux-gnu.so,sha256=_hXWRW0awIPmnlqi5Vr7OZNgB52qTpuK_mzykXiT7hc,21487024
|
19
|
+
openplx/_PhysicsSwig.cpython-312-x86_64-linux-gnu.so,sha256=mLjm1HKS40HnRdwh7eEj7Xt9AQE1JQURPaEB_lv8uh4,18877184
|
20
|
+
openplx/_RoboticsSwig.cpython-312-x86_64-linux-gnu.so,sha256=KICN7ImK1UCJ9XTrJ8eSBoDi-ffrFfz9f-VufD8-Fo4,12632400
|
21
|
+
openplx/_SimulationSwig.cpython-312-x86_64-linux-gnu.so,sha256=0Hssuvqbyl6t95W9FBCua_Cc0MvO14DMgjfYBZUYnU0,3645160
|
22
|
+
openplx/_TerrainSwig.cpython-312-x86_64-linux-gnu.so,sha256=qaaH8FgnUSuornFTsnKtsjrlrbsIBTbWvS9Jovrjz2M,6974248
|
23
|
+
openplx/_UrdfSwig.cpython-312-x86_64-linux-gnu.so,sha256=uOUGtmT3dHAZgxOw9LLgq0NoGDncOGG1mBhI3AcfFeE,5783640
|
24
|
+
openplx/_VehiclesSwig.cpython-312-x86_64-linux-gnu.so,sha256=OCpqNAG4f5jThMTb4UxP3IARkcl5CEYdKCU5QE6cDzs,9230888
|
25
|
+
openplx/_VisualsSwig.cpython-312-x86_64-linux-gnu.so,sha256=_u26hpKw14TaC_uAjYM7bKUJWnh_hR1RxW1myBJHTE8,3205816
|
26
|
+
openplx/__init__.py,sha256=kmEO6LtqbvU3Se2YirnZgAw7_22O2NhjPMaqLXtAe8o,2401
|
27
|
+
openplx/agxtoopenplx.py,sha256=gxQgZ_Pgda_5scCCBBhyu8D-jjL1yxlE7bZLtxigKCs,2422
|
28
|
+
openplx/anytoopenplx.py,sha256=qAZVnelFOVAQIpCQt3y9LlfCBHQcNmxUWXFbCZuNQUc,2274
|
29
|
+
openplx/api.py,sha256=V1ZMlVSlRMcS0Qg-EGjXkpQefCPNE0NF9NIBuqtKuEo,49879
|
30
|
+
openplx/migrate.py,sha256=wBd1jVqSRUdMSIzL2k25GjorB0xru6VyBf0hZ__RLjk,8240
|
31
|
+
openplx/migration_hint.py,sha256=2Xs2OB_HikmiynDAk4xHKhmU5N4pqOnPFPpeIWhK37Y,603
|
32
|
+
openplx/migrations.py,sha256=mHZoU9mm7Z8N2hGw6bo4OMVuxhEsL1_UnmRI0jS7jY8,20858
|
33
|
+
openplx/openplx_application.py,sha256=t5CkZp2aUy88eXZ17qtO8YPZLPUD6jxN3X2XjrUvTdo,7143
|
34
|
+
openplx/openplx_serialize.py,sha256=Uul2-6_BwyJzg26JdgAz2MjR37mQJ6kWKjPbmE-sJzk,1456
|
35
|
+
openplx/openplx_validate.py,sha256=pK5YqxuBJMTYidr4txqwag1EYpWs8ig0D1vZJ8H_K1M,2553
|
36
|
+
openplx/openplx_view.py,sha256=GCFQSl4W-dPRWL0qLQmfJ69OEwgTMKL05J62YyKSb64,351
|
37
|
+
openplx/versionaction.py,sha256=Obj_q69dn5GnFMZs2as87ZScPMLaLAduPppmXUzLB6I,283
|
38
|
+
agx_openplx-0.16.1.dist-info/METADATA,sha256=N8KvR7FYcQqq-UQR4gCkz_ZRhnG_Pmy0AiXKaRHX3ds,2418
|
39
|
+
agx_openplx-0.16.1.dist-info/WHEEL,sha256=x1HiyTP_r-PIOu3STHzjukjf5kVLXzgVftSXf5bl8AU,110
|
40
|
+
agx_openplx-0.16.1.dist-info/entry_points.txt,sha256=IyHBVBNuH_4ZhfWnB1ZVXYtpKG_QT7dwGIUMLWdyhrc,263
|
41
|
+
agx_openplx-0.16.1.dist-info/RECORD,,
|