agx-openplx 0.15.10__cp312-cp312-manylinux_2_39_x86_64.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (41) hide show
  1. agx_openplx-0.15.10.dist-info/METADATA +67 -0
  2. agx_openplx-0.15.10.dist-info/RECORD +41 -0
  3. agx_openplx-0.15.10.dist-info/WHEEL +4 -0
  4. agx_openplx-0.15.10.dist-info/entry_points.txt +8 -0
  5. openplx/Core.py +7781 -0
  6. openplx/DriveTrain.py +8972 -0
  7. openplx/Math.py +5372 -0
  8. openplx/Physics.py +39861 -0
  9. openplx/Physics1D.py +5534 -0
  10. openplx/Physics3D.py +39782 -0
  11. openplx/Robotics.py +14922 -0
  12. openplx/Simulation.py +1056 -0
  13. openplx/Terrain.py +3891 -0
  14. openplx/Urdf.py +654 -0
  15. openplx/Vehicles.py +8793 -0
  16. openplx/Visuals.py +3901 -0
  17. openplx/_AgxOpenPlxPyApi.cpython-312-x86_64-linux-gnu.so +0 -0
  18. openplx/_CorePythonSwig.cpython-312-x86_64-linux-gnu.so +0 -0
  19. openplx/_DriveTrainSwig.cpython-312-x86_64-linux-gnu.so +0 -0
  20. openplx/_MathSwig.cpython-312-x86_64-linux-gnu.so +0 -0
  21. openplx/_Physics1DSwig.cpython-312-x86_64-linux-gnu.so +0 -0
  22. openplx/_Physics3DSwig.cpython-312-x86_64-linux-gnu.so +0 -0
  23. openplx/_PhysicsSwig.cpython-312-x86_64-linux-gnu.so +0 -0
  24. openplx/_RoboticsSwig.cpython-312-x86_64-linux-gnu.so +0 -0
  25. openplx/_SimulationSwig.cpython-312-x86_64-linux-gnu.so +0 -0
  26. openplx/_TerrainSwig.cpython-312-x86_64-linux-gnu.so +0 -0
  27. openplx/_UrdfSwig.cpython-312-x86_64-linux-gnu.so +0 -0
  28. openplx/_VehiclesSwig.cpython-312-x86_64-linux-gnu.so +0 -0
  29. openplx/_VisualsSwig.cpython-312-x86_64-linux-gnu.so +0 -0
  30. openplx/__init__.py +55 -0
  31. openplx/agxtoopenplx.py +55 -0
  32. openplx/anytoopenplx.py +44 -0
  33. openplx/api.py +1353 -0
  34. openplx/migrate.py +190 -0
  35. openplx/migration_hint.py +14 -0
  36. openplx/migrations.py +703 -0
  37. openplx/openplx_application.py +138 -0
  38. openplx/openplx_serialize.py +35 -0
  39. openplx/openplx_validate.py +57 -0
  40. openplx/openplx_view.py +14 -0
  41. openplx/versionaction.py +11 -0
@@ -0,0 +1,67 @@
1
+ Metadata-Version: 2.1
2
+ Name: agx-openplx
3
+ Version: 0.15.10
4
+ Summary: AGX-OpenPLX python interface development
5
+ Home-page: https://pub.algoryx.dev/openplx/
6
+ License: Apache 2.0
7
+ Author: Algoryx
8
+ Author-email: algoryx@algoryx.com
9
+ Requires-Python: >=3.8
10
+ Classifier: Intended Audience :: Manufacturing
11
+ Classifier: Intended Audience :: Science/Research
12
+ Classifier: License :: Other/Proprietary License
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Programming Language :: Python :: 3.8
15
+ Classifier: Programming Language :: Python :: 3.9
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Programming Language :: Python :: 3.13
20
+ Classifier: Topic :: Scientific/Engineering :: Physics
21
+ Classifier: Topic :: Scientific/Engineering :: Visualization
22
+ Requires-Dist: agx (==2.39.1.0)
23
+ Requires-Dist: openplx-bundles (>=0.15.10,<0.16.0)
24
+ Requires-Dist: pclick (>=0.5.0,<0.6.0)
25
+ Description-Content-Type: text/markdown
26
+
27
+ # AGX OpenPLX
28
+
29
+ The agx-openplx package implements all OpenPLX bundles such as Physics, Robotics, DriveTrain and Simulation using [AGX Dynamics Real-time multi-body simulation](https://www.algoryx.se/agx-dynamics/).
30
+ The package contains python bindings and native libraries needed to load and run .openplx files.
31
+
32
+ See [OpenPLX documentation](https://pub.algoryx.dev/openplx/) for more info on OpenPLX.
33
+
34
+ ## Prerequisites
35
+
36
+ - Python 3.9 on Windows or OSX
37
+ - Python 3.8 on Ubuntu 20.04
38
+ - Python 3.10 on Ubuntu 22.04
39
+ - [AGX Dynamics](https://www.algoryx.se/agx-dynamics/) 2.39.1.0 and an AGX Dynamics License
40
+ - pip >= 21.3. Run `python3 -m pip install --upgrade pip`, pip older than 21.3 does not support editable installs with pyproject.toml and will fail.
41
+
42
+
43
+ At [OpenPLX documentation](https://pub.algoryx.dev/openplx/getopenplx/) you can find out which older version of OpenPLX matches which version of AGX.
44
+
45
+ ## Install
46
+
47
+ To get the version corresponding to your AGX on Windows do:
48
+
49
+ ```bash
50
+ setup_env.bat
51
+ # Use `python -m pip` to ensure that the python bundled with AGX is used
52
+ python -m pip install -e %AGX_DATA_DIR%/agx-pypi
53
+ pip install -U agx-openplx
54
+ ```
55
+
56
+ To get the version corresponding to your AGX on OSX and Linux do:
57
+
58
+ ```bash
59
+ source setup_env.sh
60
+ pip3 install -e $AGX_DATA_DIR/agx-pypi
61
+ pip3 install -U agx-openplx
62
+ ```
63
+
64
+ ## License
65
+
66
+ [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0)
67
+
@@ -0,0 +1,41 @@
1
+ openplx/Core.py,sha256=8V0Y0pJANycjq8SpFEUmqb3cNiqQbFkRI8IagtcsMFE,270043
2
+ openplx/DriveTrain.py,sha256=jjEryBRYvVUAPpQBZUkDsrsJ_n54oqF9tCQk84W726E,444318
3
+ openplx/Math.py,sha256=kTaoNjhQSmvVHmo1WV3z9GdjNvuzPSXFW6kd-UQpJAQ,188561
4
+ openplx/Physics.py,sha256=89skXzRa5bgVe5v6Yqqr337VVTp-1AgB7JBLEK0Wy_Y,2073957
5
+ openplx/Physics1D.py,sha256=FulmP3MnFmVtBnX_N6890ngvz7m_v2GdrpVHunLPIkY,274245
6
+ openplx/Physics3D.py,sha256=dEB9uQvIBsxGssit5necVbTrP6Ew28rCrK6s411DM54,2280953
7
+ openplx/Robotics.py,sha256=Q51AAeGWm4Niuiu6d1MRreXyJKZdGbnEjBV6LM-NOUk,754194
8
+ openplx/Simulation.py,sha256=mIuypCjz1O6c9_x4O_Ro6GLhOiXRzNlZlVjdgoGYq3U,46318
9
+ openplx/Terrain.py,sha256=9CxizkDVf9UtPIyBumenXzfbxAL6yn2G_d0_ZWbv-JY,184884
10
+ openplx/Urdf.py,sha256=JOryVyaFIROiyJ9V9OMrZAS3MoUwVmJW_2TTPSsRlH4,23780
11
+ openplx/Vehicles.py,sha256=QmtdIawHlYcIRtJH4LotXSQNs06rCpxPl6e5gklUvWg,450074
12
+ openplx/Visuals.py,sha256=lYBFzzPZvMeWaKzXQgzikmO-fuDshcgf5uCJJQ-WKTM,187052
13
+ openplx/_AgxOpenPlxPyApi.cpython-312-x86_64-linux-gnu.so,sha256=_NRCy9LUggRQyhxc9spN3ZA7Roq1XMSwpsk0-W-kqpE,17727600
14
+ openplx/_CorePythonSwig.cpython-312-x86_64-linux-gnu.so,sha256=6IIbcfuytme3srCIJtxZrOAQHD2e5QPMOo2zWumn8uw,4775008
15
+ openplx/_DriveTrainSwig.cpython-312-x86_64-linux-gnu.so,sha256=GQRIljgW78hr1InQXJ8UlOEW-2l4ukMqdlHFd-3AQpw,9420920
16
+ openplx/_MathSwig.cpython-312-x86_64-linux-gnu.so,sha256=EHrajGad9PYKlz1CTTk4T7rVu9cMny6gkqPQbsAj5ug,3001848
17
+ openplx/_Physics1DSwig.cpython-312-x86_64-linux-gnu.so,sha256=3ffGW3VqOZ_dDoFLcw33THsdip2fQLbWi0Mqt0bo5Dc,5463424
18
+ openplx/_Physics3DSwig.cpython-312-x86_64-linux-gnu.so,sha256=a1ocYPDVwXnfoFH7OD9Mv9GxkoP_qhQY1jH1RbHkLkc,21409976
19
+ openplx/_PhysicsSwig.cpython-312-x86_64-linux-gnu.so,sha256=igvwi5_G9DQbFmDCZ9V5_PK7-bpWd5_K9yQtkIzvmAQ,18307136
20
+ openplx/_RoboticsSwig.cpython-312-x86_64-linux-gnu.so,sha256=ILhg5ksr8q69LmhCMzNslo6UKrtGak6PVhdk_ohyG1I,12548864
21
+ openplx/_SimulationSwig.cpython-312-x86_64-linux-gnu.so,sha256=1rRwCRKwdSt2bnf3uF4sXWASjx02VwQenSdfi0XuWK8,3609880
22
+ openplx/_TerrainSwig.cpython-312-x86_64-linux-gnu.so,sha256=Ccbq0SBT1aco9Kt0pcBb4IOkfintvjLDHcMx3FfifAU,6976576
23
+ openplx/_UrdfSwig.cpython-312-x86_64-linux-gnu.so,sha256=Le5c_FRnsSn8cTpc2f57X214WosrGH9b0qRYGuYGvIo,5615232
24
+ openplx/_VehiclesSwig.cpython-312-x86_64-linux-gnu.so,sha256=HjuCd61KZ1L6YdkjP1K86wawISPHc0eNVJVQBoSnCTk,9206560
25
+ openplx/_VisualsSwig.cpython-312-x86_64-linux-gnu.so,sha256=T8S8CZu6f9RfY2OBEEthdedy3ZLvwyjunGdbE-E4FVQ,3214368
26
+ openplx/__init__.py,sha256=00zLd4jh4mswKxENwe2-1ArJ_ahqvqKQyC_9R3E4i5s,2402
27
+ openplx/agxtoopenplx.py,sha256=gxQgZ_Pgda_5scCCBBhyu8D-jjL1yxlE7bZLtxigKCs,2422
28
+ openplx/anytoopenplx.py,sha256=qAZVnelFOVAQIpCQt3y9LlfCBHQcNmxUWXFbCZuNQUc,2274
29
+ openplx/api.py,sha256=NL6rihBZhG6C_gH2DxMDYJNexW4z_AoW67hsxFKbo7Q,49097
30
+ openplx/migrate.py,sha256=wBd1jVqSRUdMSIzL2k25GjorB0xru6VyBf0hZ__RLjk,8240
31
+ openplx/migration_hint.py,sha256=2Xs2OB_HikmiynDAk4xHKhmU5N4pqOnPFPpeIWhK37Y,603
32
+ openplx/migrations.py,sha256=4gZIB-pV3fdUoMlOgjQVR9Qk78LUAdM4aBC3wRaIJzw,20566
33
+ openplx/openplx_application.py,sha256=vrPhYcwDRWN86e7tPMg5Kq_d0N5KKvWHOu5Hjy8QzQM,6670
34
+ openplx/openplx_serialize.py,sha256=Uul2-6_BwyJzg26JdgAz2MjR37mQJ6kWKjPbmE-sJzk,1456
35
+ openplx/openplx_validate.py,sha256=_u-w0JVsf53LZ48C_wdONuu8ptIuV1nGDH-sDdfALiw,2111
36
+ openplx/openplx_view.py,sha256=GCFQSl4W-dPRWL0qLQmfJ69OEwgTMKL05J62YyKSb64,351
37
+ openplx/versionaction.py,sha256=Obj_q69dn5GnFMZs2as87ZScPMLaLAduPppmXUzLB6I,283
38
+ agx_openplx-0.15.10.dist-info/METADATA,sha256=EODlnOmpssB7e3nxXwTd0qOyaltM1itmz7Iy4fVVPko,2420
39
+ agx_openplx-0.15.10.dist-info/WHEEL,sha256=x1HiyTP_r-PIOu3STHzjukjf5kVLXzgVftSXf5bl8AU,110
40
+ agx_openplx-0.15.10.dist-info/entry_points.txt,sha256=IyHBVBNuH_4ZhfWnB1ZVXYtpKG_QT7dwGIUMLWdyhrc,263
41
+ agx_openplx-0.15.10.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: poetry-core 1.9.1
3
+ Root-Is-Purelib: false
4
+ Tag: cp312-cp312-manylinux_2_39_x86_64
@@ -0,0 +1,8 @@
1
+ [console_scripts]
2
+ agxtoopenplx=openplx.agxtoopenplx:run
3
+ anytoopenplx=openplx.anytoopenplx:run
4
+ openplx_migrate=openplx.migrate:run
5
+ openplx_serialize=openplx.openplx_serialize:run
6
+ openplx_validate=openplx.openplx_validate:run
7
+ openplx_view=openplx.openplx_view:run
8
+