agx-openplx 0.15.6__cp39-cp39-macosx_12_0_arm64.whl → 0.15.8__cp39-cp39-macosx_12_0_arm64.whl
Sign up to get free protection for your applications and to get access to all the features.
- {agx_openplx-0.15.6.dist-info → agx_openplx-0.15.8.dist-info}/METADATA +4 -4
- {agx_openplx-0.15.6.dist-info → agx_openplx-0.15.8.dist-info}/RECORD +18 -18
- openplx/DriveTrain.py +808 -4
- openplx/Physics.py +9343 -6895
- openplx/Robotics.py +3 -3
- openplx/_AgxOpenPlxPyApi.cpython-39-darwin.so +0 -0
- openplx/_DriveTrainSwig.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/__init__.py +2 -2
- {agx_openplx-0.15.6.dist-info → agx_openplx-0.15.8.dist-info}/WHEEL +0 -0
- {agx_openplx-0.15.6.dist-info → agx_openplx-0.15.8.dist-info}/entry_points.txt +0 -0
openplx/Robotics.py
CHANGED
@@ -12036,7 +12036,7 @@ class EndEffectors_SuctionCupElastoDynamics(openplx.Core.Object):
|
|
12036
12036
|
# Register EndEffectors_SuctionCupElastoDynamics in _RoboticsSwig:
|
12037
12037
|
_RoboticsSwig.EndEffectors_SuctionCupElastoDynamics_swigregister(EndEffectors_SuctionCupElastoDynamics)
|
12038
12038
|
|
12039
|
-
class EndEffectors_VacuumGripper(openplx.Core.Object):
|
12039
|
+
class EndEffectors_VacuumGripper(openplx.Core.Object, openplx.Physics.BoolInputTrait, openplx.Physics.BoolOutputTrait):
|
12040
12040
|
r"""Proxy of C++ openplx::Robotics::EndEffectors::VacuumGripper class."""
|
12041
12041
|
|
12042
12042
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
@@ -12059,11 +12059,11 @@ class EndEffectors_VacuumGripper(openplx.Core.Object):
|
|
12059
12059
|
return _RoboticsSwig.EndEffectors_VacuumGripper_vacuum_system(self)
|
12060
12060
|
|
12061
12061
|
def activate_input(self):
|
12062
|
-
r"""activate_input(EndEffectors_VacuumGripper self) -> std::shared_ptr< openplx::Physics::Signals::
|
12062
|
+
r"""activate_input(EndEffectors_VacuumGripper self) -> std::shared_ptr< openplx::Physics::Signals::ActivateInput >"""
|
12063
12063
|
return _RoboticsSwig.EndEffectors_VacuumGripper_activate_input(self)
|
12064
12064
|
|
12065
12065
|
def activated_output(self):
|
12066
|
-
r"""activated_output(EndEffectors_VacuumGripper self) -> std::shared_ptr< openplx::Physics::Signals::
|
12066
|
+
r"""activated_output(EndEffectors_VacuumGripper self) -> std::shared_ptr< openplx::Physics::Signals::ActivatedOutput >"""
|
12067
12067
|
return _RoboticsSwig.EndEffectors_VacuumGripper_activated_output(self)
|
12068
12068
|
|
12069
12069
|
def setDynamic(self, key, value):
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
openplx/__init__.py
CHANGED
@@ -9,8 +9,8 @@ import traceback
|
|
9
9
|
import importlib.util
|
10
10
|
if importlib.util.find_spec("agx_env"):
|
11
11
|
import agx_env # pylint: disable=unused-import
|
12
|
-
__AGXVERSION__ = "2.39.0
|
13
|
-
__version__ = "0.15.
|
12
|
+
__AGXVERSION__ = "2.39.1.0"
|
13
|
+
__version__ = "0.15.8"
|
14
14
|
|
15
15
|
try:
|
16
16
|
import agx
|
File without changes
|
File without changes
|