agx-openplx 0.15.22__cp39-cp39-macosx_11_0_x86_64.whl → 0.16.1__cp39-cp39-macosx_11_0_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.15.22.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 +3318 -1690
- openplx/Math.py +528 -528
- openplx/Physics.py +3368 -2098
- openplx/Physics1D.py +272 -272
- openplx/Physics3D.py +2308 -2308
- openplx/Robotics.py +882 -882
- openplx/Simulation.py +46 -46
- openplx/Terrain.py +182 -182
- openplx/Urdf.py +25 -24
- openplx/Vehicles.py +436 -436
- openplx/Visuals.py +188 -188
- openplx/_AgxOpenPlxPyApi.cpython-39-darwin.so +0 -0
- openplx/_CorePythonSwig.cpython-39-darwin.so +0 -0
- openplx/_DriveTrainSwig.cpython-39-darwin.so +0 -0
- openplx/_MathSwig.cpython-39-darwin.so +0 -0
- openplx/_Physics1DSwig.cpython-39-darwin.so +0 -0
- openplx/_Physics3DSwig.cpython-39-darwin.so +0 -0
- openplx/_PhysicsSwig.cpython-39-darwin.so +0 -0
- openplx/_RoboticsSwig.cpython-39-darwin.so +0 -0
- openplx/_SimulationSwig.cpython-39-darwin.so +0 -0
- openplx/_TerrainSwig.cpython-39-darwin.so +0 -0
- openplx/_UrdfSwig.cpython-39-darwin.so +0 -0
- openplx/_VehiclesSwig.cpython-39-darwin.so +0 -0
- openplx/_VisualsSwig.cpython-39-darwin.so +0 -0
- openplx/__init__.py +1 -1
- openplx/api.py +23 -1
- openplx/migrations.py +12 -0
- openplx/openplx_application.py +11 -1
- openplx/openplx_validate.py +8 -1
- agx_openplx-0.15.22.dist-info/RECORD +0 -41
- {agx_openplx-0.15.22.dist-info → agx_openplx-0.16.1.dist-info}/WHEEL +0 -0
- {agx_openplx-0.15.22.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.
|
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
|
@@ -18,7 +18,7 @@ Classifier: Programming Language :: Python :: 3.11
|
|
18
18
|
Classifier: Topic :: Scientific/Engineering :: Physics
|
19
19
|
Classifier: Topic :: Scientific/Engineering :: Visualization
|
20
20
|
Requires-Dist: agx (==2.39.1.0)
|
21
|
-
Requires-Dist: openplx-bundles (>=0.
|
21
|
+
Requires-Dist: openplx-bundles (>=0.16.1,<0.17.0)
|
22
22
|
Requires-Dist: pclick (>=0.5.1,<0.6.0)
|
23
23
|
Description-Content-Type: text/markdown
|
24
24
|
|
@@ -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-39-darwin.so,sha256=zXu3XjZFRPRRsR4Y0CgRMkRVlt--axsGtJozyY1bF1E,12817840
|
14
|
+
openplx/_CorePythonSwig.cpython-39-darwin.so,sha256=r-PxrNzL-fT95c2nygr6uf8mxQ2S9yWvJfEq-SfVOZs,3482408
|
15
|
+
openplx/_DriveTrainSwig.cpython-39-darwin.so,sha256=nzofoOINsuoX6EJ8S5ZDZ8YecSJfiOHhDuaDMl0gzTc,7724872
|
16
|
+
openplx/_MathSwig.cpython-39-darwin.so,sha256=X_Sv2KJ4d71jRn-0WwjQJTschJ6Xk2VEMG9VGsji5kM,2283040
|
17
|
+
openplx/_Physics1DSwig.cpython-39-darwin.so,sha256=L4njuQ0o6-aos6gNOe7_JKWgJj_9aQ4XqFNI1ybZ1dU,4063544
|
18
|
+
openplx/_Physics3DSwig.cpython-39-darwin.so,sha256=PqRx0O_OIGsZq2jcWUPwsPYz68B-5pRovjvAT-l2xFs,16715384
|
19
|
+
openplx/_PhysicsSwig.cpython-39-darwin.so,sha256=58hEr58dJlRs10b-3myGorAaFXP2N_KKjl1Cch3KIGU,14534608
|
20
|
+
openplx/_RoboticsSwig.cpython-39-darwin.so,sha256=SnKz1QMYaID7Ca_Xk0tR9Ce235-d6gCCWr4kBUYZ5pI,9691304
|
21
|
+
openplx/_SimulationSwig.cpython-39-darwin.so,sha256=pcM9P8DAU6HNstyPu7Y0S_o7hnZA6NTlUOCws8u1nWs,2594112
|
22
|
+
openplx/_TerrainSwig.cpython-39-darwin.so,sha256=N4b0jfoDWHit8VBwTiHIbDVD7io7QEzeJlpPdvhjTFc,5157040
|
23
|
+
openplx/_UrdfSwig.cpython-39-darwin.so,sha256=SMzTfa0v3ankJUFsnXyTEKRraN1dHBHK6dhgqytw6PI,4228248
|
24
|
+
openplx/_VehiclesSwig.cpython-39-darwin.so,sha256=jJXMakWTWsJq19vqnAffc-HoKW19OE94_vTr2agGnik,6986328
|
25
|
+
openplx/_VisualsSwig.cpython-39-darwin.so,sha256=MwI5dyR9PtfmFHIeJkPlHPmDQhCgcA6ZKJ8aY7h0RrY,2420888
|
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=MTic43nqzAHhdWJ9GXnJbsSoc3LO5qcbghBnU3n4RzA,2316
|
39
|
+
agx_openplx-0.16.1.dist-info/WHEEL,sha256=W307N0wBfaRdJhpFt3-O569UHUDhv6HYSm6E0RX82zU,105
|
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,,
|