agx-openplx 0.15.22__cp39-cp39-macosx_12_0_arm64.whl → 0.16.1__cp39-cp39-macosx_12_0_arm64.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
openplx/Robotics.py
CHANGED
@@ -11432,19 +11432,19 @@ class Robotics_Signals_SensorValues_Vector(object):
|
|
11432
11432
|
# Register Robotics_Signals_SensorValues_Vector in _RoboticsSwig:
|
11433
11433
|
_RoboticsSwig.Robotics_Signals_SensorValues_Vector_swigregister(Robotics_Signals_SensorValues_Vector)
|
11434
11434
|
|
11435
|
-
class
|
11435
|
+
class Robotics_EndEffectors_VacuumSystem(openplx.Core.Object):
|
11436
11436
|
r"""Proxy of C++ openplx::Robotics::EndEffectors::VacuumSystem class."""
|
11437
11437
|
|
11438
11438
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
11439
11439
|
__repr__ = _swig_repr
|
11440
11440
|
|
11441
11441
|
def __init__(self):
|
11442
|
-
r"""__init__(
|
11443
|
-
_RoboticsSwig.
|
11442
|
+
r"""__init__(Robotics_EndEffectors_VacuumSystem self) -> Robotics_EndEffectors_VacuumSystem"""
|
11443
|
+
_RoboticsSwig.Robotics_EndEffectors_VacuumSystem_swiginit(self, _RoboticsSwig.new_Robotics_EndEffectors_VacuumSystem())
|
11444
11444
|
|
11445
11445
|
def setDynamic(self, key, value):
|
11446
11446
|
r"""
|
11447
|
-
setDynamic(
|
11447
|
+
setDynamic(Robotics_EndEffectors_VacuumSystem self, std::string const & key, Any value)
|
11448
11448
|
|
11449
11449
|
Parameters
|
11450
11450
|
----------
|
@@ -11452,22 +11452,22 @@ class EndEffectors_VacuumSystem(openplx.Core.Object):
|
|
11452
11452
|
value: openplx::Core::Any &&
|
11453
11453
|
|
11454
11454
|
"""
|
11455
|
-
return _RoboticsSwig.
|
11455
|
+
return _RoboticsSwig.Robotics_EndEffectors_VacuumSystem_setDynamic(self, key, value)
|
11456
11456
|
|
11457
11457
|
def getDynamic(self, key):
|
11458
11458
|
r"""
|
11459
|
-
getDynamic(
|
11459
|
+
getDynamic(Robotics_EndEffectors_VacuumSystem self, std::string const & key) -> Any
|
11460
11460
|
|
11461
11461
|
Parameters
|
11462
11462
|
----------
|
11463
11463
|
key: std::string const &
|
11464
11464
|
|
11465
11465
|
"""
|
11466
|
-
return _RoboticsSwig.
|
11466
|
+
return _RoboticsSwig.Robotics_EndEffectors_VacuumSystem_getDynamic(self, key)
|
11467
11467
|
|
11468
11468
|
def callDynamic(self, key, args):
|
11469
11469
|
r"""
|
11470
|
-
callDynamic(
|
11470
|
+
callDynamic(Robotics_EndEffectors_VacuumSystem self, std::string const & key, AnyVector args) -> Any
|
11471
11471
|
|
11472
11472
|
Parameters
|
11473
11473
|
----------
|
@@ -11475,62 +11475,62 @@ class EndEffectors_VacuumSystem(openplx.Core.Object):
|
|
11475
11475
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
11476
11476
|
|
11477
11477
|
"""
|
11478
|
-
return _RoboticsSwig.
|
11478
|
+
return _RoboticsSwig.Robotics_EndEffectors_VacuumSystem_callDynamic(self, key, args)
|
11479
11479
|
|
11480
11480
|
def extractObjectFieldsTo(self, output):
|
11481
11481
|
r"""
|
11482
|
-
extractObjectFieldsTo(
|
11482
|
+
extractObjectFieldsTo(Robotics_EndEffectors_VacuumSystem self, ObjectVector output)
|
11483
11483
|
|
11484
11484
|
Parameters
|
11485
11485
|
----------
|
11486
11486
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
11487
11487
|
|
11488
11488
|
"""
|
11489
|
-
return _RoboticsSwig.
|
11489
|
+
return _RoboticsSwig.Robotics_EndEffectors_VacuumSystem_extractObjectFieldsTo(self, output)
|
11490
11490
|
|
11491
11491
|
def extractEntriesTo(self, output):
|
11492
11492
|
r"""
|
11493
|
-
extractEntriesTo(
|
11493
|
+
extractEntriesTo(Robotics_EndEffectors_VacuumSystem self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
11494
11494
|
|
11495
11495
|
Parameters
|
11496
11496
|
----------
|
11497
11497
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
11498
11498
|
|
11499
11499
|
"""
|
11500
|
-
return _RoboticsSwig.
|
11500
|
+
return _RoboticsSwig.Robotics_EndEffectors_VacuumSystem_extractEntriesTo(self, output)
|
11501
11501
|
|
11502
11502
|
def triggerOnInit(self, context):
|
11503
11503
|
r"""
|
11504
|
-
triggerOnInit(
|
11504
|
+
triggerOnInit(Robotics_EndEffectors_VacuumSystem self, openplx::RuntimeContext const & context)
|
11505
11505
|
|
11506
11506
|
Parameters
|
11507
11507
|
----------
|
11508
11508
|
context: openplx::RuntimeContext const &
|
11509
11509
|
|
11510
11510
|
"""
|
11511
|
-
return _RoboticsSwig.
|
11512
|
-
__swig_destroy__ = _RoboticsSwig.
|
11511
|
+
return _RoboticsSwig.Robotics_EndEffectors_VacuumSystem_triggerOnInit(self, context)
|
11512
|
+
__swig_destroy__ = _RoboticsSwig.delete_Robotics_EndEffectors_VacuumSystem
|
11513
11513
|
|
11514
|
-
# Register
|
11515
|
-
_RoboticsSwig.
|
11514
|
+
# Register Robotics_EndEffectors_VacuumSystem in _RoboticsSwig:
|
11515
|
+
_RoboticsSwig.Robotics_EndEffectors_VacuumSystem_swigregister(Robotics_EndEffectors_VacuumSystem)
|
11516
11516
|
|
11517
|
-
class
|
11517
|
+
class Robotics_EndEffectors_ConstantVacuumSystem(Robotics_EndEffectors_VacuumSystem):
|
11518
11518
|
r"""Proxy of C++ openplx::Robotics::EndEffectors::ConstantVacuumSystem class."""
|
11519
11519
|
|
11520
11520
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
11521
11521
|
__repr__ = _swig_repr
|
11522
11522
|
|
11523
11523
|
def __init__(self):
|
11524
|
-
r"""__init__(
|
11525
|
-
_RoboticsSwig.
|
11524
|
+
r"""__init__(Robotics_EndEffectors_ConstantVacuumSystem self) -> Robotics_EndEffectors_ConstantVacuumSystem"""
|
11525
|
+
_RoboticsSwig.Robotics_EndEffectors_ConstantVacuumSystem_swiginit(self, _RoboticsSwig.new_Robotics_EndEffectors_ConstantVacuumSystem())
|
11526
11526
|
|
11527
11527
|
def vacuum_level(self):
|
11528
|
-
r"""vacuum_level(
|
11529
|
-
return _RoboticsSwig.
|
11528
|
+
r"""vacuum_level(Robotics_EndEffectors_ConstantVacuumSystem self) -> double"""
|
11529
|
+
return _RoboticsSwig.Robotics_EndEffectors_ConstantVacuumSystem_vacuum_level(self)
|
11530
11530
|
|
11531
11531
|
def setDynamic(self, key, value):
|
11532
11532
|
r"""
|
11533
|
-
setDynamic(
|
11533
|
+
setDynamic(Robotics_EndEffectors_ConstantVacuumSystem self, std::string const & key, Any value)
|
11534
11534
|
|
11535
11535
|
Parameters
|
11536
11536
|
----------
|
@@ -11538,22 +11538,22 @@ class EndEffectors_ConstantVacuumSystem(EndEffectors_VacuumSystem):
|
|
11538
11538
|
value: openplx::Core::Any &&
|
11539
11539
|
|
11540
11540
|
"""
|
11541
|
-
return _RoboticsSwig.
|
11541
|
+
return _RoboticsSwig.Robotics_EndEffectors_ConstantVacuumSystem_setDynamic(self, key, value)
|
11542
11542
|
|
11543
11543
|
def getDynamic(self, key):
|
11544
11544
|
r"""
|
11545
|
-
getDynamic(
|
11545
|
+
getDynamic(Robotics_EndEffectors_ConstantVacuumSystem self, std::string const & key) -> Any
|
11546
11546
|
|
11547
11547
|
Parameters
|
11548
11548
|
----------
|
11549
11549
|
key: std::string const &
|
11550
11550
|
|
11551
11551
|
"""
|
11552
|
-
return _RoboticsSwig.
|
11552
|
+
return _RoboticsSwig.Robotics_EndEffectors_ConstantVacuumSystem_getDynamic(self, key)
|
11553
11553
|
|
11554
11554
|
def callDynamic(self, key, args):
|
11555
11555
|
r"""
|
11556
|
-
callDynamic(
|
11556
|
+
callDynamic(Robotics_EndEffectors_ConstantVacuumSystem self, std::string const & key, AnyVector args) -> Any
|
11557
11557
|
|
11558
11558
|
Parameters
|
11559
11559
|
----------
|
@@ -11561,98 +11561,98 @@ class EndEffectors_ConstantVacuumSystem(EndEffectors_VacuumSystem):
|
|
11561
11561
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
11562
11562
|
|
11563
11563
|
"""
|
11564
|
-
return _RoboticsSwig.
|
11564
|
+
return _RoboticsSwig.Robotics_EndEffectors_ConstantVacuumSystem_callDynamic(self, key, args)
|
11565
11565
|
|
11566
11566
|
def extractObjectFieldsTo(self, output):
|
11567
11567
|
r"""
|
11568
|
-
extractObjectFieldsTo(
|
11568
|
+
extractObjectFieldsTo(Robotics_EndEffectors_ConstantVacuumSystem self, ObjectVector output)
|
11569
11569
|
|
11570
11570
|
Parameters
|
11571
11571
|
----------
|
11572
11572
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
11573
11573
|
|
11574
11574
|
"""
|
11575
|
-
return _RoboticsSwig.
|
11575
|
+
return _RoboticsSwig.Robotics_EndEffectors_ConstantVacuumSystem_extractObjectFieldsTo(self, output)
|
11576
11576
|
|
11577
11577
|
def extractEntriesTo(self, output):
|
11578
11578
|
r"""
|
11579
|
-
extractEntriesTo(
|
11579
|
+
extractEntriesTo(Robotics_EndEffectors_ConstantVacuumSystem self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
11580
11580
|
|
11581
11581
|
Parameters
|
11582
11582
|
----------
|
11583
11583
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
11584
11584
|
|
11585
11585
|
"""
|
11586
|
-
return _RoboticsSwig.
|
11586
|
+
return _RoboticsSwig.Robotics_EndEffectors_ConstantVacuumSystem_extractEntriesTo(self, output)
|
11587
11587
|
|
11588
11588
|
def triggerOnInit(self, context):
|
11589
11589
|
r"""
|
11590
|
-
triggerOnInit(
|
11590
|
+
triggerOnInit(Robotics_EndEffectors_ConstantVacuumSystem self, openplx::RuntimeContext const & context)
|
11591
11591
|
|
11592
11592
|
Parameters
|
11593
11593
|
----------
|
11594
11594
|
context: openplx::RuntimeContext const &
|
11595
11595
|
|
11596
11596
|
"""
|
11597
|
-
return _RoboticsSwig.
|
11598
|
-
__swig_destroy__ = _RoboticsSwig.
|
11597
|
+
return _RoboticsSwig.Robotics_EndEffectors_ConstantVacuumSystem_triggerOnInit(self, context)
|
11598
|
+
__swig_destroy__ = _RoboticsSwig.delete_Robotics_EndEffectors_ConstantVacuumSystem
|
11599
11599
|
|
11600
|
-
# Register
|
11601
|
-
_RoboticsSwig.
|
11600
|
+
# Register Robotics_EndEffectors_ConstantVacuumSystem in _RoboticsSwig:
|
11601
|
+
_RoboticsSwig.Robotics_EndEffectors_ConstantVacuumSystem_swigregister(Robotics_EndEffectors_ConstantVacuumSystem)
|
11602
11602
|
|
11603
|
-
class
|
11603
|
+
class Robotics_EndEffectors_SuctionCup(openplx.Physics3D.Physics3D_StructuralComponent):
|
11604
11604
|
r"""Proxy of C++ openplx::Robotics::EndEffectors::SuctionCup class."""
|
11605
11605
|
|
11606
11606
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
11607
11607
|
__repr__ = _swig_repr
|
11608
11608
|
|
11609
11609
|
def __init__(self):
|
11610
|
-
r"""__init__(
|
11611
|
-
_RoboticsSwig.
|
11610
|
+
r"""__init__(Robotics_EndEffectors_SuctionCup self) -> Robotics_EndEffectors_SuctionCup"""
|
11611
|
+
_RoboticsSwig.Robotics_EndEffectors_SuctionCup_swiginit(self, _RoboticsSwig.new_Robotics_EndEffectors_SuctionCup())
|
11612
11612
|
|
11613
11613
|
def body(self):
|
11614
|
-
r"""body(
|
11615
|
-
return _RoboticsSwig.
|
11614
|
+
r"""body(Robotics_EndEffectors_SuctionCup self) -> std::shared_ptr< openplx::Physics3D::Bodies::RigidBody >"""
|
11615
|
+
return _RoboticsSwig.Robotics_EndEffectors_SuctionCup_body(self)
|
11616
11616
|
|
11617
11617
|
def lip_radius(self):
|
11618
|
-
r"""lip_radius(
|
11619
|
-
return _RoboticsSwig.
|
11618
|
+
r"""lip_radius(Robotics_EndEffectors_SuctionCup self) -> double"""
|
11619
|
+
return _RoboticsSwig.Robotics_EndEffectors_SuctionCup_lip_radius(self)
|
11620
11620
|
|
11621
11621
|
def mounting_radius(self):
|
11622
|
-
r"""mounting_radius(
|
11623
|
-
return _RoboticsSwig.
|
11622
|
+
r"""mounting_radius(Robotics_EndEffectors_SuctionCup self) -> double"""
|
11623
|
+
return _RoboticsSwig.Robotics_EndEffectors_SuctionCup_mounting_radius(self)
|
11624
11624
|
|
11625
11625
|
def resting_height(self):
|
11626
|
-
r"""resting_height(
|
11627
|
-
return _RoboticsSwig.
|
11626
|
+
r"""resting_height(Robotics_EndEffectors_SuctionCup self) -> double"""
|
11627
|
+
return _RoboticsSwig.Robotics_EndEffectors_SuctionCup_resting_height(self)
|
11628
11628
|
|
11629
11629
|
def collapsed_height(self):
|
11630
|
-
r"""collapsed_height(
|
11631
|
-
return _RoboticsSwig.
|
11630
|
+
r"""collapsed_height(Robotics_EndEffectors_SuctionCup self) -> double"""
|
11631
|
+
return _RoboticsSwig.Robotics_EndEffectors_SuctionCup_collapsed_height(self)
|
11632
11632
|
|
11633
11633
|
def lip_normal(self):
|
11634
|
-
r"""lip_normal(
|
11635
|
-
return _RoboticsSwig.
|
11634
|
+
r"""lip_normal(Robotics_EndEffectors_SuctionCup self) -> std::shared_ptr< openplx::Math::Vec3 >"""
|
11635
|
+
return _RoboticsSwig.Robotics_EndEffectors_SuctionCup_lip_normal(self)
|
11636
11636
|
|
11637
11637
|
def gripper_connector(self):
|
11638
|
-
r"""gripper_connector(
|
11639
|
-
return _RoboticsSwig.
|
11638
|
+
r"""gripper_connector(Robotics_EndEffectors_SuctionCup self) -> std::shared_ptr< openplx::Physics3D::Charges::RedirectedMateConnector >"""
|
11639
|
+
return _RoboticsSwig.Robotics_EndEffectors_SuctionCup_gripper_connector(self)
|
11640
11640
|
|
11641
11641
|
def resting_mounting_connector(self):
|
11642
|
-
r"""resting_mounting_connector(
|
11643
|
-
return _RoboticsSwig.
|
11642
|
+
r"""resting_mounting_connector(Robotics_EndEffectors_SuctionCup self) -> std::shared_ptr< openplx::Physics3D::Charges::RedirectedMateConnector >"""
|
11643
|
+
return _RoboticsSwig.Robotics_EndEffectors_SuctionCup_resting_mounting_connector(self)
|
11644
11644
|
|
11645
11645
|
def collapsed_mounting_connector(self):
|
11646
|
-
r"""collapsed_mounting_connector(
|
11647
|
-
return _RoboticsSwig.
|
11646
|
+
r"""collapsed_mounting_connector(Robotics_EndEffectors_SuctionCup self) -> std::shared_ptr< openplx::Physics3D::Charges::RedirectedMateConnector >"""
|
11647
|
+
return _RoboticsSwig.Robotics_EndEffectors_SuctionCup_collapsed_mounting_connector(self)
|
11648
11648
|
|
11649
11649
|
def object_connector(self):
|
11650
|
-
r"""object_connector(
|
11651
|
-
return _RoboticsSwig.
|
11650
|
+
r"""object_connector(Robotics_EndEffectors_SuctionCup self) -> std::shared_ptr< openplx::Physics3D::Charges::RedirectedMateConnector >"""
|
11651
|
+
return _RoboticsSwig.Robotics_EndEffectors_SuctionCup_object_connector(self)
|
11652
11652
|
|
11653
11653
|
def setDynamic(self, key, value):
|
11654
11654
|
r"""
|
11655
|
-
setDynamic(
|
11655
|
+
setDynamic(Robotics_EndEffectors_SuctionCup self, std::string const & key, Any value)
|
11656
11656
|
|
11657
11657
|
Parameters
|
11658
11658
|
----------
|
@@ -11660,22 +11660,22 @@ class EndEffectors_SuctionCup(openplx.Physics3D.StructuralComponent):
|
|
11660
11660
|
value: openplx::Core::Any &&
|
11661
11661
|
|
11662
11662
|
"""
|
11663
|
-
return _RoboticsSwig.
|
11663
|
+
return _RoboticsSwig.Robotics_EndEffectors_SuctionCup_setDynamic(self, key, value)
|
11664
11664
|
|
11665
11665
|
def getDynamic(self, key):
|
11666
11666
|
r"""
|
11667
|
-
getDynamic(
|
11667
|
+
getDynamic(Robotics_EndEffectors_SuctionCup self, std::string const & key) -> Any
|
11668
11668
|
|
11669
11669
|
Parameters
|
11670
11670
|
----------
|
11671
11671
|
key: std::string const &
|
11672
11672
|
|
11673
11673
|
"""
|
11674
|
-
return _RoboticsSwig.
|
11674
|
+
return _RoboticsSwig.Robotics_EndEffectors_SuctionCup_getDynamic(self, key)
|
11675
11675
|
|
11676
11676
|
def callDynamic(self, key, args):
|
11677
11677
|
r"""
|
11678
|
-
callDynamic(
|
11678
|
+
callDynamic(Robotics_EndEffectors_SuctionCup self, std::string const & key, AnyVector args) -> Any
|
11679
11679
|
|
11680
11680
|
Parameters
|
11681
11681
|
----------
|
@@ -11683,86 +11683,86 @@ class EndEffectors_SuctionCup(openplx.Physics3D.StructuralComponent):
|
|
11683
11683
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
11684
11684
|
|
11685
11685
|
"""
|
11686
|
-
return _RoboticsSwig.
|
11686
|
+
return _RoboticsSwig.Robotics_EndEffectors_SuctionCup_callDynamic(self, key, args)
|
11687
11687
|
|
11688
11688
|
def extractObjectFieldsTo(self, output):
|
11689
11689
|
r"""
|
11690
|
-
extractObjectFieldsTo(
|
11690
|
+
extractObjectFieldsTo(Robotics_EndEffectors_SuctionCup self, ObjectVector output)
|
11691
11691
|
|
11692
11692
|
Parameters
|
11693
11693
|
----------
|
11694
11694
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
11695
11695
|
|
11696
11696
|
"""
|
11697
|
-
return _RoboticsSwig.
|
11697
|
+
return _RoboticsSwig.Robotics_EndEffectors_SuctionCup_extractObjectFieldsTo(self, output)
|
11698
11698
|
|
11699
11699
|
def extractEntriesTo(self, output):
|
11700
11700
|
r"""
|
11701
|
-
extractEntriesTo(
|
11701
|
+
extractEntriesTo(Robotics_EndEffectors_SuctionCup self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
11702
11702
|
|
11703
11703
|
Parameters
|
11704
11704
|
----------
|
11705
11705
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
11706
11706
|
|
11707
11707
|
"""
|
11708
|
-
return _RoboticsSwig.
|
11708
|
+
return _RoboticsSwig.Robotics_EndEffectors_SuctionCup_extractEntriesTo(self, output)
|
11709
11709
|
|
11710
11710
|
def triggerOnInit(self, context):
|
11711
11711
|
r"""
|
11712
|
-
triggerOnInit(
|
11712
|
+
triggerOnInit(Robotics_EndEffectors_SuctionCup self, openplx::RuntimeContext const & context)
|
11713
11713
|
|
11714
11714
|
Parameters
|
11715
11715
|
----------
|
11716
11716
|
context: openplx::RuntimeContext const &
|
11717
11717
|
|
11718
11718
|
"""
|
11719
|
-
return _RoboticsSwig.
|
11720
|
-
__swig_destroy__ = _RoboticsSwig.
|
11719
|
+
return _RoboticsSwig.Robotics_EndEffectors_SuctionCup_triggerOnInit(self, context)
|
11720
|
+
__swig_destroy__ = _RoboticsSwig.delete_Robotics_EndEffectors_SuctionCup
|
11721
11721
|
|
11722
|
-
# Register
|
11723
|
-
_RoboticsSwig.
|
11722
|
+
# Register Robotics_EndEffectors_SuctionCup in _RoboticsSwig:
|
11723
|
+
_RoboticsSwig.Robotics_EndEffectors_SuctionCup_swigregister(Robotics_EndEffectors_SuctionCup)
|
11724
11724
|
|
11725
|
-
class
|
11725
|
+
class Robotics_EndEffectors_SixDofSuctionCup(Robotics_EndEffectors_SuctionCup):
|
11726
11726
|
r"""Proxy of C++ openplx::Robotics::EndEffectors::SixDofSuctionCup class."""
|
11727
11727
|
|
11728
11728
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
11729
11729
|
__repr__ = _swig_repr
|
11730
11730
|
|
11731
11731
|
def __init__(self):
|
11732
|
-
r"""__init__(
|
11733
|
-
_RoboticsSwig.
|
11732
|
+
r"""__init__(Robotics_EndEffectors_SixDofSuctionCup self) -> Robotics_EndEffectors_SixDofSuctionCup"""
|
11733
|
+
_RoboticsSwig.Robotics_EndEffectors_SixDofSuctionCup_swiginit(self, _RoboticsSwig.new_Robotics_EndEffectors_SixDofSuctionCup())
|
11734
11734
|
|
11735
11735
|
def geometry(self):
|
11736
|
-
r"""geometry(
|
11737
|
-
return _RoboticsSwig.
|
11736
|
+
r"""geometry(Robotics_EndEffectors_SixDofSuctionCup self) -> std::shared_ptr< openplx::Physics3D::Charges::ExternalTriMeshGeometry >"""
|
11737
|
+
return _RoboticsSwig.Robotics_EndEffectors_SixDofSuctionCup_geometry(self)
|
11738
11738
|
|
11739
11739
|
def local_geometry_axis(self):
|
11740
|
-
r"""local_geometry_axis(
|
11741
|
-
return _RoboticsSwig.
|
11740
|
+
r"""local_geometry_axis(Robotics_EndEffectors_SixDofSuctionCup self) -> std::shared_ptr< openplx::Math::Vec3 >"""
|
11741
|
+
return _RoboticsSwig.Robotics_EndEffectors_SixDofSuctionCup_local_geometry_axis(self)
|
11742
11742
|
|
11743
11743
|
def holder_relative_position(self):
|
11744
|
-
r"""holder_relative_position(
|
11745
|
-
return _RoboticsSwig.
|
11744
|
+
r"""holder_relative_position(Robotics_EndEffectors_SixDofSuctionCup self) -> std::shared_ptr< openplx::Math::Vec3 >"""
|
11745
|
+
return _RoboticsSwig.Robotics_EndEffectors_SixDofSuctionCup_holder_relative_position(self)
|
11746
11746
|
|
11747
11747
|
def collapsed_elasto_dynamics(self):
|
11748
|
-
r"""collapsed_elasto_dynamics(
|
11749
|
-
return _RoboticsSwig.
|
11748
|
+
r"""collapsed_elasto_dynamics(Robotics_EndEffectors_SixDofSuctionCup self) -> std::shared_ptr< openplx::Robotics::EndEffectors::SuctionCupElastoDynamics >"""
|
11749
|
+
return _RoboticsSwig.Robotics_EndEffectors_SixDofSuctionCup_collapsed_elasto_dynamics(self)
|
11750
11750
|
|
11751
11751
|
def resting_elasto_dynamics(self):
|
11752
|
-
r"""resting_elasto_dynamics(
|
11753
|
-
return _RoboticsSwig.
|
11752
|
+
r"""resting_elasto_dynamics(Robotics_EndEffectors_SixDofSuctionCup self) -> std::shared_ptr< openplx::Robotics::EndEffectors::SuctionCupElastoDynamics >"""
|
11753
|
+
return _RoboticsSwig.Robotics_EndEffectors_SixDofSuctionCup_resting_elasto_dynamics(self)
|
11754
11754
|
|
11755
11755
|
def collapsed_joint(self):
|
11756
|
-
r"""collapsed_joint(
|
11757
|
-
return _RoboticsSwig.
|
11756
|
+
r"""collapsed_joint(Robotics_EndEffectors_SixDofSuctionCup self) -> std::shared_ptr< openplx::Robotics::EndEffectors::SixDofSuctionCupJoint >"""
|
11757
|
+
return _RoboticsSwig.Robotics_EndEffectors_SixDofSuctionCup_collapsed_joint(self)
|
11758
11758
|
|
11759
11759
|
def resting_joint(self):
|
11760
|
-
r"""resting_joint(
|
11761
|
-
return _RoboticsSwig.
|
11760
|
+
r"""resting_joint(Robotics_EndEffectors_SixDofSuctionCup self) -> std::shared_ptr< openplx::Robotics::EndEffectors::SixDofSuctionCupJoint >"""
|
11761
|
+
return _RoboticsSwig.Robotics_EndEffectors_SixDofSuctionCup_resting_joint(self)
|
11762
11762
|
|
11763
11763
|
def setDynamic(self, key, value):
|
11764
11764
|
r"""
|
11765
|
-
setDynamic(
|
11765
|
+
setDynamic(Robotics_EndEffectors_SixDofSuctionCup self, std::string const & key, Any value)
|
11766
11766
|
|
11767
11767
|
Parameters
|
11768
11768
|
----------
|
@@ -11770,22 +11770,22 @@ class EndEffectors_SixDofSuctionCup(EndEffectors_SuctionCup):
|
|
11770
11770
|
value: openplx::Core::Any &&
|
11771
11771
|
|
11772
11772
|
"""
|
11773
|
-
return _RoboticsSwig.
|
11773
|
+
return _RoboticsSwig.Robotics_EndEffectors_SixDofSuctionCup_setDynamic(self, key, value)
|
11774
11774
|
|
11775
11775
|
def getDynamic(self, key):
|
11776
11776
|
r"""
|
11777
|
-
getDynamic(
|
11777
|
+
getDynamic(Robotics_EndEffectors_SixDofSuctionCup self, std::string const & key) -> Any
|
11778
11778
|
|
11779
11779
|
Parameters
|
11780
11780
|
----------
|
11781
11781
|
key: std::string const &
|
11782
11782
|
|
11783
11783
|
"""
|
11784
|
-
return _RoboticsSwig.
|
11784
|
+
return _RoboticsSwig.Robotics_EndEffectors_SixDofSuctionCup_getDynamic(self, key)
|
11785
11785
|
|
11786
11786
|
def callDynamic(self, key, args):
|
11787
11787
|
r"""
|
11788
|
-
callDynamic(
|
11788
|
+
callDynamic(Robotics_EndEffectors_SixDofSuctionCup self, std::string const & key, AnyVector args) -> Any
|
11789
11789
|
|
11790
11790
|
Parameters
|
11791
11791
|
----------
|
@@ -11793,66 +11793,66 @@ class EndEffectors_SixDofSuctionCup(EndEffectors_SuctionCup):
|
|
11793
11793
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
11794
11794
|
|
11795
11795
|
"""
|
11796
|
-
return _RoboticsSwig.
|
11796
|
+
return _RoboticsSwig.Robotics_EndEffectors_SixDofSuctionCup_callDynamic(self, key, args)
|
11797
11797
|
|
11798
11798
|
def extractObjectFieldsTo(self, output):
|
11799
11799
|
r"""
|
11800
|
-
extractObjectFieldsTo(
|
11800
|
+
extractObjectFieldsTo(Robotics_EndEffectors_SixDofSuctionCup self, ObjectVector output)
|
11801
11801
|
|
11802
11802
|
Parameters
|
11803
11803
|
----------
|
11804
11804
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
11805
11805
|
|
11806
11806
|
"""
|
11807
|
-
return _RoboticsSwig.
|
11807
|
+
return _RoboticsSwig.Robotics_EndEffectors_SixDofSuctionCup_extractObjectFieldsTo(self, output)
|
11808
11808
|
|
11809
11809
|
def extractEntriesTo(self, output):
|
11810
11810
|
r"""
|
11811
|
-
extractEntriesTo(
|
11811
|
+
extractEntriesTo(Robotics_EndEffectors_SixDofSuctionCup self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
11812
11812
|
|
11813
11813
|
Parameters
|
11814
11814
|
----------
|
11815
11815
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
11816
11816
|
|
11817
11817
|
"""
|
11818
|
-
return _RoboticsSwig.
|
11818
|
+
return _RoboticsSwig.Robotics_EndEffectors_SixDofSuctionCup_extractEntriesTo(self, output)
|
11819
11819
|
|
11820
11820
|
def triggerOnInit(self, context):
|
11821
11821
|
r"""
|
11822
|
-
triggerOnInit(
|
11822
|
+
triggerOnInit(Robotics_EndEffectors_SixDofSuctionCup self, openplx::RuntimeContext const & context)
|
11823
11823
|
|
11824
11824
|
Parameters
|
11825
11825
|
----------
|
11826
11826
|
context: openplx::RuntimeContext const &
|
11827
11827
|
|
11828
11828
|
"""
|
11829
|
-
return _RoboticsSwig.
|
11830
|
-
__swig_destroy__ = _RoboticsSwig.
|
11829
|
+
return _RoboticsSwig.Robotics_EndEffectors_SixDofSuctionCup_triggerOnInit(self, context)
|
11830
|
+
__swig_destroy__ = _RoboticsSwig.delete_Robotics_EndEffectors_SixDofSuctionCup
|
11831
11831
|
|
11832
|
-
# Register
|
11833
|
-
_RoboticsSwig.
|
11832
|
+
# Register Robotics_EndEffectors_SixDofSuctionCup in _RoboticsSwig:
|
11833
|
+
_RoboticsSwig.Robotics_EndEffectors_SixDofSuctionCup_swigregister(Robotics_EndEffectors_SixDofSuctionCup)
|
11834
11834
|
|
11835
|
-
class
|
11835
|
+
class Robotics_EndEffectors_SixDofSuctionCupJoint(openplx.Physics3D.Physics3D_Interactions_Lock):
|
11836
11836
|
r"""Proxy of C++ openplx::Robotics::EndEffectors::SixDofSuctionCupJoint class."""
|
11837
11837
|
|
11838
11838
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
11839
11839
|
__repr__ = _swig_repr
|
11840
11840
|
|
11841
11841
|
def __init__(self):
|
11842
|
-
r"""__init__(
|
11843
|
-
_RoboticsSwig.
|
11842
|
+
r"""__init__(Robotics_EndEffectors_SixDofSuctionCupJoint self) -> Robotics_EndEffectors_SixDofSuctionCupJoint"""
|
11843
|
+
_RoboticsSwig.Robotics_EndEffectors_SixDofSuctionCupJoint_swiginit(self, _RoboticsSwig.new_Robotics_EndEffectors_SixDofSuctionCupJoint())
|
11844
11844
|
|
11845
11845
|
def flexibility(self):
|
11846
|
-
r"""flexibility(
|
11847
|
-
return _RoboticsSwig.
|
11846
|
+
r"""flexibility(Robotics_EndEffectors_SixDofSuctionCupJoint self) -> std::shared_ptr< openplx::Physics3D::Interactions::Flexibility::LinearElasticLockFlexibility >"""
|
11847
|
+
return _RoboticsSwig.Robotics_EndEffectors_SixDofSuctionCupJoint_flexibility(self)
|
11848
11848
|
|
11849
11849
|
def dissipation(self):
|
11850
|
-
r"""dissipation(
|
11851
|
-
return _RoboticsSwig.
|
11850
|
+
r"""dissipation(Robotics_EndEffectors_SixDofSuctionCupJoint self) -> std::shared_ptr< openplx::Physics3D::Interactions::Dissipation::LockMechanicalDamping >"""
|
11851
|
+
return _RoboticsSwig.Robotics_EndEffectors_SixDofSuctionCupJoint_dissipation(self)
|
11852
11852
|
|
11853
11853
|
def setDynamic(self, key, value):
|
11854
11854
|
r"""
|
11855
|
-
setDynamic(
|
11855
|
+
setDynamic(Robotics_EndEffectors_SixDofSuctionCupJoint self, std::string const & key, Any value)
|
11856
11856
|
|
11857
11857
|
Parameters
|
11858
11858
|
----------
|
@@ -11860,22 +11860,22 @@ class EndEffectors_SixDofSuctionCupJoint(openplx.Physics3D.Interactions_Lock):
|
|
11860
11860
|
value: openplx::Core::Any &&
|
11861
11861
|
|
11862
11862
|
"""
|
11863
|
-
return _RoboticsSwig.
|
11863
|
+
return _RoboticsSwig.Robotics_EndEffectors_SixDofSuctionCupJoint_setDynamic(self, key, value)
|
11864
11864
|
|
11865
11865
|
def getDynamic(self, key):
|
11866
11866
|
r"""
|
11867
|
-
getDynamic(
|
11867
|
+
getDynamic(Robotics_EndEffectors_SixDofSuctionCupJoint self, std::string const & key) -> Any
|
11868
11868
|
|
11869
11869
|
Parameters
|
11870
11870
|
----------
|
11871
11871
|
key: std::string const &
|
11872
11872
|
|
11873
11873
|
"""
|
11874
|
-
return _RoboticsSwig.
|
11874
|
+
return _RoboticsSwig.Robotics_EndEffectors_SixDofSuctionCupJoint_getDynamic(self, key)
|
11875
11875
|
|
11876
11876
|
def callDynamic(self, key, args):
|
11877
11877
|
r"""
|
11878
|
-
callDynamic(
|
11878
|
+
callDynamic(Robotics_EndEffectors_SixDofSuctionCupJoint self, std::string const & key, AnyVector args) -> Any
|
11879
11879
|
|
11880
11880
|
Parameters
|
11881
11881
|
----------
|
@@ -11883,90 +11883,90 @@ class EndEffectors_SixDofSuctionCupJoint(openplx.Physics3D.Interactions_Lock):
|
|
11883
11883
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
11884
11884
|
|
11885
11885
|
"""
|
11886
|
-
return _RoboticsSwig.
|
11886
|
+
return _RoboticsSwig.Robotics_EndEffectors_SixDofSuctionCupJoint_callDynamic(self, key, args)
|
11887
11887
|
|
11888
11888
|
def extractObjectFieldsTo(self, output):
|
11889
11889
|
r"""
|
11890
|
-
extractObjectFieldsTo(
|
11890
|
+
extractObjectFieldsTo(Robotics_EndEffectors_SixDofSuctionCupJoint self, ObjectVector output)
|
11891
11891
|
|
11892
11892
|
Parameters
|
11893
11893
|
----------
|
11894
11894
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
11895
11895
|
|
11896
11896
|
"""
|
11897
|
-
return _RoboticsSwig.
|
11897
|
+
return _RoboticsSwig.Robotics_EndEffectors_SixDofSuctionCupJoint_extractObjectFieldsTo(self, output)
|
11898
11898
|
|
11899
11899
|
def extractEntriesTo(self, output):
|
11900
11900
|
r"""
|
11901
|
-
extractEntriesTo(
|
11901
|
+
extractEntriesTo(Robotics_EndEffectors_SixDofSuctionCupJoint self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
11902
11902
|
|
11903
11903
|
Parameters
|
11904
11904
|
----------
|
11905
11905
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
11906
11906
|
|
11907
11907
|
"""
|
11908
|
-
return _RoboticsSwig.
|
11908
|
+
return _RoboticsSwig.Robotics_EndEffectors_SixDofSuctionCupJoint_extractEntriesTo(self, output)
|
11909
11909
|
|
11910
11910
|
def triggerOnInit(self, context):
|
11911
11911
|
r"""
|
11912
|
-
triggerOnInit(
|
11912
|
+
triggerOnInit(Robotics_EndEffectors_SixDofSuctionCupJoint self, openplx::RuntimeContext const & context)
|
11913
11913
|
|
11914
11914
|
Parameters
|
11915
11915
|
----------
|
11916
11916
|
context: openplx::RuntimeContext const &
|
11917
11917
|
|
11918
11918
|
"""
|
11919
|
-
return _RoboticsSwig.
|
11920
|
-
__swig_destroy__ = _RoboticsSwig.
|
11919
|
+
return _RoboticsSwig.Robotics_EndEffectors_SixDofSuctionCupJoint_triggerOnInit(self, context)
|
11920
|
+
__swig_destroy__ = _RoboticsSwig.delete_Robotics_EndEffectors_SixDofSuctionCupJoint
|
11921
11921
|
|
11922
|
-
# Register
|
11923
|
-
_RoboticsSwig.
|
11922
|
+
# Register Robotics_EndEffectors_SixDofSuctionCupJoint in _RoboticsSwig:
|
11923
|
+
_RoboticsSwig.Robotics_EndEffectors_SixDofSuctionCupJoint_swigregister(Robotics_EndEffectors_SixDofSuctionCupJoint)
|
11924
11924
|
|
11925
|
-
class
|
11925
|
+
class Robotics_EndEffectors_SuctionCupElastoDynamics(openplx.Core.Object):
|
11926
11926
|
r"""Proxy of C++ openplx::Robotics::EndEffectors::SuctionCupElastoDynamics class."""
|
11927
11927
|
|
11928
11928
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
11929
11929
|
__repr__ = _swig_repr
|
11930
11930
|
|
11931
11931
|
def __init__(self):
|
11932
|
-
r"""__init__(
|
11933
|
-
_RoboticsSwig.
|
11932
|
+
r"""__init__(Robotics_EndEffectors_SuctionCupElastoDynamics self) -> Robotics_EndEffectors_SuctionCupElastoDynamics"""
|
11933
|
+
_RoboticsSwig.Robotics_EndEffectors_SuctionCupElastoDynamics_swiginit(self, _RoboticsSwig.new_Robotics_EndEffectors_SuctionCupElastoDynamics())
|
11934
11934
|
|
11935
11935
|
def lip_normal_flexibility(self):
|
11936
|
-
r"""lip_normal_flexibility(
|
11937
|
-
return _RoboticsSwig.
|
11936
|
+
r"""lip_normal_flexibility(Robotics_EndEffectors_SuctionCupElastoDynamics self) -> std::shared_ptr< openplx::Physics::Interactions::Flexibility::LinearElastic >"""
|
11937
|
+
return _RoboticsSwig.Robotics_EndEffectors_SuctionCupElastoDynamics_lip_normal_flexibility(self)
|
11938
11938
|
|
11939
11939
|
def radial_axis_flexibility(self):
|
11940
|
-
r"""radial_axis_flexibility(
|
11941
|
-
return _RoboticsSwig.
|
11940
|
+
r"""radial_axis_flexibility(Robotics_EndEffectors_SuctionCupElastoDynamics self) -> std::shared_ptr< openplx::Physics::Interactions::Flexibility::LinearElastic >"""
|
11941
|
+
return _RoboticsSwig.Robotics_EndEffectors_SuctionCupElastoDynamics_radial_axis_flexibility(self)
|
11942
11942
|
|
11943
11943
|
def around_lip_normal_flexibility(self):
|
11944
|
-
r"""around_lip_normal_flexibility(
|
11945
|
-
return _RoboticsSwig.
|
11944
|
+
r"""around_lip_normal_flexibility(Robotics_EndEffectors_SuctionCupElastoDynamics self) -> std::shared_ptr< openplx::Physics::Interactions::Flexibility::LinearElastic >"""
|
11945
|
+
return _RoboticsSwig.Robotics_EndEffectors_SuctionCupElastoDynamics_around_lip_normal_flexibility(self)
|
11946
11946
|
|
11947
11947
|
def around_radial_axis_flexibility(self):
|
11948
|
-
r"""around_radial_axis_flexibility(
|
11949
|
-
return _RoboticsSwig.
|
11948
|
+
r"""around_radial_axis_flexibility(Robotics_EndEffectors_SuctionCupElastoDynamics self) -> std::shared_ptr< openplx::Physics::Interactions::Flexibility::LinearElastic >"""
|
11949
|
+
return _RoboticsSwig.Robotics_EndEffectors_SuctionCupElastoDynamics_around_radial_axis_flexibility(self)
|
11950
11950
|
|
11951
11951
|
def lip_normal_dissipation(self):
|
11952
|
-
r"""lip_normal_dissipation(
|
11953
|
-
return _RoboticsSwig.
|
11952
|
+
r"""lip_normal_dissipation(Robotics_EndEffectors_SuctionCupElastoDynamics self) -> std::shared_ptr< openplx::Physics::Interactions::Dissipation::MechanicalDamping >"""
|
11953
|
+
return _RoboticsSwig.Robotics_EndEffectors_SuctionCupElastoDynamics_lip_normal_dissipation(self)
|
11954
11954
|
|
11955
11955
|
def radial_axis_dissipation(self):
|
11956
|
-
r"""radial_axis_dissipation(
|
11957
|
-
return _RoboticsSwig.
|
11956
|
+
r"""radial_axis_dissipation(Robotics_EndEffectors_SuctionCupElastoDynamics self) -> std::shared_ptr< openplx::Physics::Interactions::Dissipation::MechanicalDamping >"""
|
11957
|
+
return _RoboticsSwig.Robotics_EndEffectors_SuctionCupElastoDynamics_radial_axis_dissipation(self)
|
11958
11958
|
|
11959
11959
|
def around_lip_normal_dissipation(self):
|
11960
|
-
r"""around_lip_normal_dissipation(
|
11961
|
-
return _RoboticsSwig.
|
11960
|
+
r"""around_lip_normal_dissipation(Robotics_EndEffectors_SuctionCupElastoDynamics self) -> std::shared_ptr< openplx::Physics::Interactions::Dissipation::MechanicalDamping >"""
|
11961
|
+
return _RoboticsSwig.Robotics_EndEffectors_SuctionCupElastoDynamics_around_lip_normal_dissipation(self)
|
11962
11962
|
|
11963
11963
|
def around_radial_axis_dissipation(self):
|
11964
|
-
r"""around_radial_axis_dissipation(
|
11965
|
-
return _RoboticsSwig.
|
11964
|
+
r"""around_radial_axis_dissipation(Robotics_EndEffectors_SuctionCupElastoDynamics self) -> std::shared_ptr< openplx::Physics::Interactions::Dissipation::MechanicalDamping >"""
|
11965
|
+
return _RoboticsSwig.Robotics_EndEffectors_SuctionCupElastoDynamics_around_radial_axis_dissipation(self)
|
11966
11966
|
|
11967
11967
|
def setDynamic(self, key, value):
|
11968
11968
|
r"""
|
11969
|
-
setDynamic(
|
11969
|
+
setDynamic(Robotics_EndEffectors_SuctionCupElastoDynamics self, std::string const & key, Any value)
|
11970
11970
|
|
11971
11971
|
Parameters
|
11972
11972
|
----------
|
@@ -11974,22 +11974,22 @@ class EndEffectors_SuctionCupElastoDynamics(openplx.Core.Object):
|
|
11974
11974
|
value: openplx::Core::Any &&
|
11975
11975
|
|
11976
11976
|
"""
|
11977
|
-
return _RoboticsSwig.
|
11977
|
+
return _RoboticsSwig.Robotics_EndEffectors_SuctionCupElastoDynamics_setDynamic(self, key, value)
|
11978
11978
|
|
11979
11979
|
def getDynamic(self, key):
|
11980
11980
|
r"""
|
11981
|
-
getDynamic(
|
11981
|
+
getDynamic(Robotics_EndEffectors_SuctionCupElastoDynamics self, std::string const & key) -> Any
|
11982
11982
|
|
11983
11983
|
Parameters
|
11984
11984
|
----------
|
11985
11985
|
key: std::string const &
|
11986
11986
|
|
11987
11987
|
"""
|
11988
|
-
return _RoboticsSwig.
|
11988
|
+
return _RoboticsSwig.Robotics_EndEffectors_SuctionCupElastoDynamics_getDynamic(self, key)
|
11989
11989
|
|
11990
11990
|
def callDynamic(self, key, args):
|
11991
11991
|
r"""
|
11992
|
-
callDynamic(
|
11992
|
+
callDynamic(Robotics_EndEffectors_SuctionCupElastoDynamics self, std::string const & key, AnyVector args) -> Any
|
11993
11993
|
|
11994
11994
|
Parameters
|
11995
11995
|
----------
|
@@ -11997,78 +11997,78 @@ class EndEffectors_SuctionCupElastoDynamics(openplx.Core.Object):
|
|
11997
11997
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
11998
11998
|
|
11999
11999
|
"""
|
12000
|
-
return _RoboticsSwig.
|
12000
|
+
return _RoboticsSwig.Robotics_EndEffectors_SuctionCupElastoDynamics_callDynamic(self, key, args)
|
12001
12001
|
|
12002
12002
|
def extractObjectFieldsTo(self, output):
|
12003
12003
|
r"""
|
12004
|
-
extractObjectFieldsTo(
|
12004
|
+
extractObjectFieldsTo(Robotics_EndEffectors_SuctionCupElastoDynamics self, ObjectVector output)
|
12005
12005
|
|
12006
12006
|
Parameters
|
12007
12007
|
----------
|
12008
12008
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
12009
12009
|
|
12010
12010
|
"""
|
12011
|
-
return _RoboticsSwig.
|
12011
|
+
return _RoboticsSwig.Robotics_EndEffectors_SuctionCupElastoDynamics_extractObjectFieldsTo(self, output)
|
12012
12012
|
|
12013
12013
|
def extractEntriesTo(self, output):
|
12014
12014
|
r"""
|
12015
|
-
extractEntriesTo(
|
12015
|
+
extractEntriesTo(Robotics_EndEffectors_SuctionCupElastoDynamics self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
12016
12016
|
|
12017
12017
|
Parameters
|
12018
12018
|
----------
|
12019
12019
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
12020
12020
|
|
12021
12021
|
"""
|
12022
|
-
return _RoboticsSwig.
|
12022
|
+
return _RoboticsSwig.Robotics_EndEffectors_SuctionCupElastoDynamics_extractEntriesTo(self, output)
|
12023
12023
|
|
12024
12024
|
def triggerOnInit(self, context):
|
12025
12025
|
r"""
|
12026
|
-
triggerOnInit(
|
12026
|
+
triggerOnInit(Robotics_EndEffectors_SuctionCupElastoDynamics self, openplx::RuntimeContext const & context)
|
12027
12027
|
|
12028
12028
|
Parameters
|
12029
12029
|
----------
|
12030
12030
|
context: openplx::RuntimeContext const &
|
12031
12031
|
|
12032
12032
|
"""
|
12033
|
-
return _RoboticsSwig.
|
12034
|
-
__swig_destroy__ = _RoboticsSwig.
|
12033
|
+
return _RoboticsSwig.Robotics_EndEffectors_SuctionCupElastoDynamics_triggerOnInit(self, context)
|
12034
|
+
__swig_destroy__ = _RoboticsSwig.delete_Robotics_EndEffectors_SuctionCupElastoDynamics
|
12035
12035
|
|
12036
|
-
# Register
|
12037
|
-
_RoboticsSwig.
|
12036
|
+
# Register Robotics_EndEffectors_SuctionCupElastoDynamics in _RoboticsSwig:
|
12037
|
+
_RoboticsSwig.Robotics_EndEffectors_SuctionCupElastoDynamics_swigregister(Robotics_EndEffectors_SuctionCupElastoDynamics)
|
12038
12038
|
|
12039
|
-
class
|
12039
|
+
class Robotics_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")
|
12043
12043
|
__repr__ = _swig_repr
|
12044
12044
|
|
12045
12045
|
def __init__(self):
|
12046
|
-
r"""__init__(
|
12047
|
-
_RoboticsSwig.
|
12046
|
+
r"""__init__(Robotics_EndEffectors_VacuumGripper self) -> Robotics_EndEffectors_VacuumGripper"""
|
12047
|
+
_RoboticsSwig.Robotics_EndEffectors_VacuumGripper_swiginit(self, _RoboticsSwig.new_Robotics_EndEffectors_VacuumGripper())
|
12048
12048
|
|
12049
12049
|
def activated(self):
|
12050
|
-
r"""activated(
|
12051
|
-
return _RoboticsSwig.
|
12050
|
+
r"""activated(Robotics_EndEffectors_VacuumGripper self) -> bool"""
|
12051
|
+
return _RoboticsSwig.Robotics_EndEffectors_VacuumGripper_activated(self)
|
12052
12052
|
|
12053
12053
|
def suction_cups(self):
|
12054
|
-
r"""suction_cups(
|
12055
|
-
return _RoboticsSwig.
|
12054
|
+
r"""suction_cups(Robotics_EndEffectors_VacuumGripper self) -> Robotics_EndEffectors_SuctionCup_Vector"""
|
12055
|
+
return _RoboticsSwig.Robotics_EndEffectors_VacuumGripper_suction_cups(self)
|
12056
12056
|
|
12057
12057
|
def vacuum_system(self):
|
12058
|
-
r"""vacuum_system(
|
12059
|
-
return _RoboticsSwig.
|
12058
|
+
r"""vacuum_system(Robotics_EndEffectors_VacuumGripper self) -> std::shared_ptr< openplx::Robotics::EndEffectors::VacuumSystem >"""
|
12059
|
+
return _RoboticsSwig.Robotics_EndEffectors_VacuumGripper_vacuum_system(self)
|
12060
12060
|
|
12061
12061
|
def activate_input(self):
|
12062
|
-
r"""activate_input(
|
12063
|
-
return _RoboticsSwig.
|
12062
|
+
r"""activate_input(Robotics_EndEffectors_VacuumGripper self) -> std::shared_ptr< openplx::Physics::Signals::ActivateInput >"""
|
12063
|
+
return _RoboticsSwig.Robotics_EndEffectors_VacuumGripper_activate_input(self)
|
12064
12064
|
|
12065
12065
|
def activated_output(self):
|
12066
|
-
r"""activated_output(
|
12067
|
-
return _RoboticsSwig.
|
12066
|
+
r"""activated_output(Robotics_EndEffectors_VacuumGripper self) -> std::shared_ptr< openplx::Physics::Signals::ActivatedOutput >"""
|
12067
|
+
return _RoboticsSwig.Robotics_EndEffectors_VacuumGripper_activated_output(self)
|
12068
12068
|
|
12069
12069
|
def setDynamic(self, key, value):
|
12070
12070
|
r"""
|
12071
|
-
setDynamic(
|
12071
|
+
setDynamic(Robotics_EndEffectors_VacuumGripper self, std::string const & key, Any value)
|
12072
12072
|
|
12073
12073
|
Parameters
|
12074
12074
|
----------
|
@@ -12076,22 +12076,22 @@ class EndEffectors_VacuumGripper(openplx.Core.Object, openplx.Physics.BoolInputT
|
|
12076
12076
|
value: openplx::Core::Any &&
|
12077
12077
|
|
12078
12078
|
"""
|
12079
|
-
return _RoboticsSwig.
|
12079
|
+
return _RoboticsSwig.Robotics_EndEffectors_VacuumGripper_setDynamic(self, key, value)
|
12080
12080
|
|
12081
12081
|
def getDynamic(self, key):
|
12082
12082
|
r"""
|
12083
|
-
getDynamic(
|
12083
|
+
getDynamic(Robotics_EndEffectors_VacuumGripper self, std::string const & key) -> Any
|
12084
12084
|
|
12085
12085
|
Parameters
|
12086
12086
|
----------
|
12087
12087
|
key: std::string const &
|
12088
12088
|
|
12089
12089
|
"""
|
12090
|
-
return _RoboticsSwig.
|
12090
|
+
return _RoboticsSwig.Robotics_EndEffectors_VacuumGripper_getDynamic(self, key)
|
12091
12091
|
|
12092
12092
|
def callDynamic(self, key, args):
|
12093
12093
|
r"""
|
12094
|
-
callDynamic(
|
12094
|
+
callDynamic(Robotics_EndEffectors_VacuumGripper self, std::string const & key, AnyVector args) -> Any
|
12095
12095
|
|
12096
12096
|
Parameters
|
12097
12097
|
----------
|
@@ -12099,66 +12099,66 @@ class EndEffectors_VacuumGripper(openplx.Core.Object, openplx.Physics.BoolInputT
|
|
12099
12099
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
12100
12100
|
|
12101
12101
|
"""
|
12102
|
-
return _RoboticsSwig.
|
12102
|
+
return _RoboticsSwig.Robotics_EndEffectors_VacuumGripper_callDynamic(self, key, args)
|
12103
12103
|
|
12104
12104
|
def extractObjectFieldsTo(self, output):
|
12105
12105
|
r"""
|
12106
|
-
extractObjectFieldsTo(
|
12106
|
+
extractObjectFieldsTo(Robotics_EndEffectors_VacuumGripper self, ObjectVector output)
|
12107
12107
|
|
12108
12108
|
Parameters
|
12109
12109
|
----------
|
12110
12110
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
12111
12111
|
|
12112
12112
|
"""
|
12113
|
-
return _RoboticsSwig.
|
12113
|
+
return _RoboticsSwig.Robotics_EndEffectors_VacuumGripper_extractObjectFieldsTo(self, output)
|
12114
12114
|
|
12115
12115
|
def extractEntriesTo(self, output):
|
12116
12116
|
r"""
|
12117
|
-
extractEntriesTo(
|
12117
|
+
extractEntriesTo(Robotics_EndEffectors_VacuumGripper self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
12118
12118
|
|
12119
12119
|
Parameters
|
12120
12120
|
----------
|
12121
12121
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
12122
12122
|
|
12123
12123
|
"""
|
12124
|
-
return _RoboticsSwig.
|
12124
|
+
return _RoboticsSwig.Robotics_EndEffectors_VacuumGripper_extractEntriesTo(self, output)
|
12125
12125
|
|
12126
12126
|
def triggerOnInit(self, context):
|
12127
12127
|
r"""
|
12128
|
-
triggerOnInit(
|
12128
|
+
triggerOnInit(Robotics_EndEffectors_VacuumGripper self, openplx::RuntimeContext const & context)
|
12129
12129
|
|
12130
12130
|
Parameters
|
12131
12131
|
----------
|
12132
12132
|
context: openplx::RuntimeContext const &
|
12133
12133
|
|
12134
12134
|
"""
|
12135
|
-
return _RoboticsSwig.
|
12136
|
-
__swig_destroy__ = _RoboticsSwig.
|
12135
|
+
return _RoboticsSwig.Robotics_EndEffectors_VacuumGripper_triggerOnInit(self, context)
|
12136
|
+
__swig_destroy__ = _RoboticsSwig.delete_Robotics_EndEffectors_VacuumGripper
|
12137
12137
|
|
12138
|
-
# Register
|
12139
|
-
_RoboticsSwig.
|
12138
|
+
# Register Robotics_EndEffectors_VacuumGripper in _RoboticsSwig:
|
12139
|
+
_RoboticsSwig.Robotics_EndEffectors_VacuumGripper_swigregister(Robotics_EndEffectors_VacuumGripper)
|
12140
12140
|
|
12141
|
-
class
|
12141
|
+
class Robotics_Joints_Joint(openplx.Physics3D.Physics3D_System):
|
12142
12142
|
r"""Proxy of C++ openplx::Robotics::Joints::Joint class."""
|
12143
12143
|
|
12144
12144
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
12145
12145
|
__repr__ = _swig_repr
|
12146
12146
|
|
12147
12147
|
def __init__(self):
|
12148
|
-
r"""__init__(
|
12149
|
-
_RoboticsSwig.
|
12148
|
+
r"""__init__(Robotics_Joints_Joint self) -> Robotics_Joints_Joint"""
|
12149
|
+
_RoboticsSwig.Robotics_Joints_Joint_swiginit(self, _RoboticsSwig.new_Robotics_Joints_Joint())
|
12150
12150
|
|
12151
12151
|
def mate(self):
|
12152
|
-
r"""mate(
|
12153
|
-
return _RoboticsSwig.
|
12152
|
+
r"""mate(Robotics_Joints_Joint self) -> std::shared_ptr< openplx::Physics3D::Interactions::Mate >"""
|
12153
|
+
return _RoboticsSwig.Robotics_Joints_Joint_mate(self)
|
12154
12154
|
|
12155
12155
|
def links(self):
|
12156
|
-
r"""links(
|
12157
|
-
return _RoboticsSwig.
|
12156
|
+
r"""links(Robotics_Joints_Joint self) -> Robotics_Links_RigidLink_Vector"""
|
12157
|
+
return _RoboticsSwig.Robotics_Joints_Joint_links(self)
|
12158
12158
|
|
12159
12159
|
def setDynamic(self, key, value):
|
12160
12160
|
r"""
|
12161
|
-
setDynamic(
|
12161
|
+
setDynamic(Robotics_Joints_Joint self, std::string const & key, Any value)
|
12162
12162
|
|
12163
12163
|
Parameters
|
12164
12164
|
----------
|
@@ -12166,22 +12166,22 @@ class Joints_Joint(openplx.Physics3D.System):
|
|
12166
12166
|
value: openplx::Core::Any &&
|
12167
12167
|
|
12168
12168
|
"""
|
12169
|
-
return _RoboticsSwig.
|
12169
|
+
return _RoboticsSwig.Robotics_Joints_Joint_setDynamic(self, key, value)
|
12170
12170
|
|
12171
12171
|
def getDynamic(self, key):
|
12172
12172
|
r"""
|
12173
|
-
getDynamic(
|
12173
|
+
getDynamic(Robotics_Joints_Joint self, std::string const & key) -> Any
|
12174
12174
|
|
12175
12175
|
Parameters
|
12176
12176
|
----------
|
12177
12177
|
key: std::string const &
|
12178
12178
|
|
12179
12179
|
"""
|
12180
|
-
return _RoboticsSwig.
|
12180
|
+
return _RoboticsSwig.Robotics_Joints_Joint_getDynamic(self, key)
|
12181
12181
|
|
12182
12182
|
def callDynamic(self, key, args):
|
12183
12183
|
r"""
|
12184
|
-
callDynamic(
|
12184
|
+
callDynamic(Robotics_Joints_Joint self, std::string const & key, AnyVector args) -> Any
|
12185
12185
|
|
12186
12186
|
Parameters
|
12187
12187
|
----------
|
@@ -12189,62 +12189,62 @@ class Joints_Joint(openplx.Physics3D.System):
|
|
12189
12189
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
12190
12190
|
|
12191
12191
|
"""
|
12192
|
-
return _RoboticsSwig.
|
12192
|
+
return _RoboticsSwig.Robotics_Joints_Joint_callDynamic(self, key, args)
|
12193
12193
|
|
12194
12194
|
def extractObjectFieldsTo(self, output):
|
12195
12195
|
r"""
|
12196
|
-
extractObjectFieldsTo(
|
12196
|
+
extractObjectFieldsTo(Robotics_Joints_Joint self, ObjectVector output)
|
12197
12197
|
|
12198
12198
|
Parameters
|
12199
12199
|
----------
|
12200
12200
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
12201
12201
|
|
12202
12202
|
"""
|
12203
|
-
return _RoboticsSwig.
|
12203
|
+
return _RoboticsSwig.Robotics_Joints_Joint_extractObjectFieldsTo(self, output)
|
12204
12204
|
|
12205
12205
|
def extractEntriesTo(self, output):
|
12206
12206
|
r"""
|
12207
|
-
extractEntriesTo(
|
12207
|
+
extractEntriesTo(Robotics_Joints_Joint self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
12208
12208
|
|
12209
12209
|
Parameters
|
12210
12210
|
----------
|
12211
12211
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
12212
12212
|
|
12213
12213
|
"""
|
12214
|
-
return _RoboticsSwig.
|
12214
|
+
return _RoboticsSwig.Robotics_Joints_Joint_extractEntriesTo(self, output)
|
12215
12215
|
|
12216
12216
|
def triggerOnInit(self, context):
|
12217
12217
|
r"""
|
12218
|
-
triggerOnInit(
|
12218
|
+
triggerOnInit(Robotics_Joints_Joint self, openplx::RuntimeContext const & context)
|
12219
12219
|
|
12220
12220
|
Parameters
|
12221
12221
|
----------
|
12222
12222
|
context: openplx::RuntimeContext const &
|
12223
12223
|
|
12224
12224
|
"""
|
12225
|
-
return _RoboticsSwig.
|
12226
|
-
__swig_destroy__ = _RoboticsSwig.
|
12225
|
+
return _RoboticsSwig.Robotics_Joints_Joint_triggerOnInit(self, context)
|
12226
|
+
__swig_destroy__ = _RoboticsSwig.delete_Robotics_Joints_Joint
|
12227
12227
|
|
12228
|
-
# Register
|
12229
|
-
_RoboticsSwig.
|
12228
|
+
# Register Robotics_Joints_Joint in _RoboticsSwig:
|
12229
|
+
_RoboticsSwig.Robotics_Joints_Joint_swigregister(Robotics_Joints_Joint)
|
12230
12230
|
|
12231
|
-
class
|
12231
|
+
class Robotics_Joints_ActuatedJoint(Robotics_Joints_Joint):
|
12232
12232
|
r"""Proxy of C++ openplx::Robotics::Joints::ActuatedJoint class."""
|
12233
12233
|
|
12234
12234
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
12235
12235
|
__repr__ = _swig_repr
|
12236
12236
|
|
12237
12237
|
def __init__(self):
|
12238
|
-
r"""__init__(
|
12239
|
-
_RoboticsSwig.
|
12238
|
+
r"""__init__(Robotics_Joints_ActuatedJoint self) -> Robotics_Joints_ActuatedJoint"""
|
12239
|
+
_RoboticsSwig.Robotics_Joints_ActuatedJoint_swiginit(self, _RoboticsSwig.new_Robotics_Joints_ActuatedJoint())
|
12240
12240
|
|
12241
12241
|
def actuator(self):
|
12242
|
-
r"""actuator(
|
12243
|
-
return _RoboticsSwig.
|
12242
|
+
r"""actuator(Robotics_Joints_ActuatedJoint self) -> std::shared_ptr< openplx::Physics::Interactions::Interaction1DOF >"""
|
12243
|
+
return _RoboticsSwig.Robotics_Joints_ActuatedJoint_actuator(self)
|
12244
12244
|
|
12245
12245
|
def setDynamic(self, key, value):
|
12246
12246
|
r"""
|
12247
|
-
setDynamic(
|
12247
|
+
setDynamic(Robotics_Joints_ActuatedJoint self, std::string const & key, Any value)
|
12248
12248
|
|
12249
12249
|
Parameters
|
12250
12250
|
----------
|
@@ -12252,22 +12252,22 @@ class Joints_ActuatedJoint(Joints_Joint):
|
|
12252
12252
|
value: openplx::Core::Any &&
|
12253
12253
|
|
12254
12254
|
"""
|
12255
|
-
return _RoboticsSwig.
|
12255
|
+
return _RoboticsSwig.Robotics_Joints_ActuatedJoint_setDynamic(self, key, value)
|
12256
12256
|
|
12257
12257
|
def getDynamic(self, key):
|
12258
12258
|
r"""
|
12259
|
-
getDynamic(
|
12259
|
+
getDynamic(Robotics_Joints_ActuatedJoint self, std::string const & key) -> Any
|
12260
12260
|
|
12261
12261
|
Parameters
|
12262
12262
|
----------
|
12263
12263
|
key: std::string const &
|
12264
12264
|
|
12265
12265
|
"""
|
12266
|
-
return _RoboticsSwig.
|
12266
|
+
return _RoboticsSwig.Robotics_Joints_ActuatedJoint_getDynamic(self, key)
|
12267
12267
|
|
12268
12268
|
def callDynamic(self, key, args):
|
12269
12269
|
r"""
|
12270
|
-
callDynamic(
|
12270
|
+
callDynamic(Robotics_Joints_ActuatedJoint self, std::string const & key, AnyVector args) -> Any
|
12271
12271
|
|
12272
12272
|
Parameters
|
12273
12273
|
----------
|
@@ -12275,74 +12275,74 @@ class Joints_ActuatedJoint(Joints_Joint):
|
|
12275
12275
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
12276
12276
|
|
12277
12277
|
"""
|
12278
|
-
return _RoboticsSwig.
|
12278
|
+
return _RoboticsSwig.Robotics_Joints_ActuatedJoint_callDynamic(self, key, args)
|
12279
12279
|
|
12280
12280
|
def extractObjectFieldsTo(self, output):
|
12281
12281
|
r"""
|
12282
|
-
extractObjectFieldsTo(
|
12282
|
+
extractObjectFieldsTo(Robotics_Joints_ActuatedJoint self, ObjectVector output)
|
12283
12283
|
|
12284
12284
|
Parameters
|
12285
12285
|
----------
|
12286
12286
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
12287
12287
|
|
12288
12288
|
"""
|
12289
|
-
return _RoboticsSwig.
|
12289
|
+
return _RoboticsSwig.Robotics_Joints_ActuatedJoint_extractObjectFieldsTo(self, output)
|
12290
12290
|
|
12291
12291
|
def extractEntriesTo(self, output):
|
12292
12292
|
r"""
|
12293
|
-
extractEntriesTo(
|
12293
|
+
extractEntriesTo(Robotics_Joints_ActuatedJoint self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
12294
12294
|
|
12295
12295
|
Parameters
|
12296
12296
|
----------
|
12297
12297
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
12298
12298
|
|
12299
12299
|
"""
|
12300
|
-
return _RoboticsSwig.
|
12300
|
+
return _RoboticsSwig.Robotics_Joints_ActuatedJoint_extractEntriesTo(self, output)
|
12301
12301
|
|
12302
12302
|
def triggerOnInit(self, context):
|
12303
12303
|
r"""
|
12304
|
-
triggerOnInit(
|
12304
|
+
triggerOnInit(Robotics_Joints_ActuatedJoint self, openplx::RuntimeContext const & context)
|
12305
12305
|
|
12306
12306
|
Parameters
|
12307
12307
|
----------
|
12308
12308
|
context: openplx::RuntimeContext const &
|
12309
12309
|
|
12310
12310
|
"""
|
12311
|
-
return _RoboticsSwig.
|
12312
|
-
__swig_destroy__ = _RoboticsSwig.
|
12311
|
+
return _RoboticsSwig.Robotics_Joints_ActuatedJoint_triggerOnInit(self, context)
|
12312
|
+
__swig_destroy__ = _RoboticsSwig.delete_Robotics_Joints_ActuatedJoint
|
12313
12313
|
|
12314
|
-
# Register
|
12315
|
-
_RoboticsSwig.
|
12314
|
+
# Register Robotics_Joints_ActuatedJoint in _RoboticsSwig:
|
12315
|
+
_RoboticsSwig.Robotics_Joints_ActuatedJoint_swigregister(Robotics_Joints_ActuatedJoint)
|
12316
12316
|
|
12317
|
-
class
|
12317
|
+
class Robotics_Joints_CoupledJointDriveTrain(openplx.Physics3D.Physics3D_System):
|
12318
12318
|
r"""Proxy of C++ openplx::Robotics::Joints::CoupledJointDriveTrain class."""
|
12319
12319
|
|
12320
12320
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
12321
12321
|
__repr__ = _swig_repr
|
12322
12322
|
|
12323
12323
|
def __init__(self):
|
12324
|
-
r"""__init__(
|
12325
|
-
_RoboticsSwig.
|
12324
|
+
r"""__init__(Robotics_Joints_CoupledJointDriveTrain self) -> Robotics_Joints_CoupledJointDriveTrain"""
|
12325
|
+
_RoboticsSwig.Robotics_Joints_CoupledJointDriveTrain_swiginit(self, _RoboticsSwig.new_Robotics_Joints_CoupledJointDriveTrain())
|
12326
12326
|
|
12327
12327
|
def shaft(self):
|
12328
|
-
r"""shaft(
|
12329
|
-
return _RoboticsSwig.
|
12328
|
+
r"""shaft(Robotics_Joints_CoupledJointDriveTrain self) -> std::shared_ptr< openplx::DriveTrain::Shaft >"""
|
12329
|
+
return _RoboticsSwig.Robotics_Joints_CoupledJointDriveTrain_shaft(self)
|
12330
12330
|
|
12331
12331
|
def sensor(self):
|
12332
|
-
r"""sensor(
|
12333
|
-
return _RoboticsSwig.
|
12332
|
+
r"""sensor(Robotics_Joints_CoupledJointDriveTrain self) -> std::shared_ptr< openplx::Robotics::Signals::Sensor >"""
|
12333
|
+
return _RoboticsSwig.Robotics_Joints_CoupledJointDriveTrain_sensor(self)
|
12334
12334
|
|
12335
12335
|
def primary_actuator(self):
|
12336
|
-
r"""primary_actuator(
|
12337
|
-
return _RoboticsSwig.
|
12336
|
+
r"""primary_actuator(Robotics_Joints_CoupledJointDriveTrain self) -> std::shared_ptr< openplx::DriveTrain::Actuator >"""
|
12337
|
+
return _RoboticsSwig.Robotics_Joints_CoupledJointDriveTrain_primary_actuator(self)
|
12338
12338
|
|
12339
12339
|
def mimic_actuator(self):
|
12340
|
-
r"""mimic_actuator(
|
12341
|
-
return _RoboticsSwig.
|
12340
|
+
r"""mimic_actuator(Robotics_Joints_CoupledJointDriveTrain self) -> std::shared_ptr< openplx::DriveTrain::Actuator >"""
|
12341
|
+
return _RoboticsSwig.Robotics_Joints_CoupledJointDriveTrain_mimic_actuator(self)
|
12342
12342
|
|
12343
12343
|
def setDynamic(self, key, value):
|
12344
12344
|
r"""
|
12345
|
-
setDynamic(
|
12345
|
+
setDynamic(Robotics_Joints_CoupledJointDriveTrain self, std::string const & key, Any value)
|
12346
12346
|
|
12347
12347
|
Parameters
|
12348
12348
|
----------
|
@@ -12350,22 +12350,22 @@ class Joints_CoupledJointDriveTrain(openplx.Physics3D.System):
|
|
12350
12350
|
value: openplx::Core::Any &&
|
12351
12351
|
|
12352
12352
|
"""
|
12353
|
-
return _RoboticsSwig.
|
12353
|
+
return _RoboticsSwig.Robotics_Joints_CoupledJointDriveTrain_setDynamic(self, key, value)
|
12354
12354
|
|
12355
12355
|
def getDynamic(self, key):
|
12356
12356
|
r"""
|
12357
|
-
getDynamic(
|
12357
|
+
getDynamic(Robotics_Joints_CoupledJointDriveTrain self, std::string const & key) -> Any
|
12358
12358
|
|
12359
12359
|
Parameters
|
12360
12360
|
----------
|
12361
12361
|
key: std::string const &
|
12362
12362
|
|
12363
12363
|
"""
|
12364
|
-
return _RoboticsSwig.
|
12364
|
+
return _RoboticsSwig.Robotics_Joints_CoupledJointDriveTrain_getDynamic(self, key)
|
12365
12365
|
|
12366
12366
|
def callDynamic(self, key, args):
|
12367
12367
|
r"""
|
12368
|
-
callDynamic(
|
12368
|
+
callDynamic(Robotics_Joints_CoupledJointDriveTrain self, std::string const & key, AnyVector args) -> Any
|
12369
12369
|
|
12370
12370
|
Parameters
|
12371
12371
|
----------
|
@@ -12373,62 +12373,62 @@ class Joints_CoupledJointDriveTrain(openplx.Physics3D.System):
|
|
12373
12373
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
12374
12374
|
|
12375
12375
|
"""
|
12376
|
-
return _RoboticsSwig.
|
12376
|
+
return _RoboticsSwig.Robotics_Joints_CoupledJointDriveTrain_callDynamic(self, key, args)
|
12377
12377
|
|
12378
12378
|
def extractObjectFieldsTo(self, output):
|
12379
12379
|
r"""
|
12380
|
-
extractObjectFieldsTo(
|
12380
|
+
extractObjectFieldsTo(Robotics_Joints_CoupledJointDriveTrain self, ObjectVector output)
|
12381
12381
|
|
12382
12382
|
Parameters
|
12383
12383
|
----------
|
12384
12384
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
12385
12385
|
|
12386
12386
|
"""
|
12387
|
-
return _RoboticsSwig.
|
12387
|
+
return _RoboticsSwig.Robotics_Joints_CoupledJointDriveTrain_extractObjectFieldsTo(self, output)
|
12388
12388
|
|
12389
12389
|
def extractEntriesTo(self, output):
|
12390
12390
|
r"""
|
12391
|
-
extractEntriesTo(
|
12391
|
+
extractEntriesTo(Robotics_Joints_CoupledJointDriveTrain self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
12392
12392
|
|
12393
12393
|
Parameters
|
12394
12394
|
----------
|
12395
12395
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
12396
12396
|
|
12397
12397
|
"""
|
12398
|
-
return _RoboticsSwig.
|
12398
|
+
return _RoboticsSwig.Robotics_Joints_CoupledJointDriveTrain_extractEntriesTo(self, output)
|
12399
12399
|
|
12400
12400
|
def triggerOnInit(self, context):
|
12401
12401
|
r"""
|
12402
|
-
triggerOnInit(
|
12402
|
+
triggerOnInit(Robotics_Joints_CoupledJointDriveTrain self, openplx::RuntimeContext const & context)
|
12403
12403
|
|
12404
12404
|
Parameters
|
12405
12405
|
----------
|
12406
12406
|
context: openplx::RuntimeContext const &
|
12407
12407
|
|
12408
12408
|
"""
|
12409
|
-
return _RoboticsSwig.
|
12410
|
-
__swig_destroy__ = _RoboticsSwig.
|
12409
|
+
return _RoboticsSwig.Robotics_Joints_CoupledJointDriveTrain_triggerOnInit(self, context)
|
12410
|
+
__swig_destroy__ = _RoboticsSwig.delete_Robotics_Joints_CoupledJointDriveTrain
|
12411
12411
|
|
12412
|
-
# Register
|
12413
|
-
_RoboticsSwig.
|
12412
|
+
# Register Robotics_Joints_CoupledJointDriveTrain in _RoboticsSwig:
|
12413
|
+
_RoboticsSwig.Robotics_Joints_CoupledJointDriveTrain_swigregister(Robotics_Joints_CoupledJointDriveTrain)
|
12414
12414
|
|
12415
|
-
class
|
12415
|
+
class Robotics_Joints_FixedJoint(Robotics_Joints_Joint):
|
12416
12416
|
r"""Proxy of C++ openplx::Robotics::Joints::FixedJoint class."""
|
12417
12417
|
|
12418
12418
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
12419
12419
|
__repr__ = _swig_repr
|
12420
12420
|
|
12421
12421
|
def __init__(self):
|
12422
|
-
r"""__init__(
|
12423
|
-
_RoboticsSwig.
|
12422
|
+
r"""__init__(Robotics_Joints_FixedJoint self) -> Robotics_Joints_FixedJoint"""
|
12423
|
+
_RoboticsSwig.Robotics_Joints_FixedJoint_swiginit(self, _RoboticsSwig.new_Robotics_Joints_FixedJoint())
|
12424
12424
|
|
12425
12425
|
def mate(self):
|
12426
|
-
r"""mate(
|
12427
|
-
return _RoboticsSwig.
|
12426
|
+
r"""mate(Robotics_Joints_FixedJoint self) -> std::shared_ptr< openplx::Physics3D::Interactions::Lock >"""
|
12427
|
+
return _RoboticsSwig.Robotics_Joints_FixedJoint_mate(self)
|
12428
12428
|
|
12429
12429
|
def setDynamic(self, key, value):
|
12430
12430
|
r"""
|
12431
|
-
setDynamic(
|
12431
|
+
setDynamic(Robotics_Joints_FixedJoint self, std::string const & key, Any value)
|
12432
12432
|
|
12433
12433
|
Parameters
|
12434
12434
|
----------
|
@@ -12436,22 +12436,22 @@ class Joints_FixedJoint(Joints_Joint):
|
|
12436
12436
|
value: openplx::Core::Any &&
|
12437
12437
|
|
12438
12438
|
"""
|
12439
|
-
return _RoboticsSwig.
|
12439
|
+
return _RoboticsSwig.Robotics_Joints_FixedJoint_setDynamic(self, key, value)
|
12440
12440
|
|
12441
12441
|
def getDynamic(self, key):
|
12442
12442
|
r"""
|
12443
|
-
getDynamic(
|
12443
|
+
getDynamic(Robotics_Joints_FixedJoint self, std::string const & key) -> Any
|
12444
12444
|
|
12445
12445
|
Parameters
|
12446
12446
|
----------
|
12447
12447
|
key: std::string const &
|
12448
12448
|
|
12449
12449
|
"""
|
12450
|
-
return _RoboticsSwig.
|
12450
|
+
return _RoboticsSwig.Robotics_Joints_FixedJoint_getDynamic(self, key)
|
12451
12451
|
|
12452
12452
|
def callDynamic(self, key, args):
|
12453
12453
|
r"""
|
12454
|
-
callDynamic(
|
12454
|
+
callDynamic(Robotics_Joints_FixedJoint self, std::string const & key, AnyVector args) -> Any
|
12455
12455
|
|
12456
12456
|
Parameters
|
12457
12457
|
----------
|
@@ -12459,66 +12459,66 @@ class Joints_FixedJoint(Joints_Joint):
|
|
12459
12459
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
12460
12460
|
|
12461
12461
|
"""
|
12462
|
-
return _RoboticsSwig.
|
12462
|
+
return _RoboticsSwig.Robotics_Joints_FixedJoint_callDynamic(self, key, args)
|
12463
12463
|
|
12464
12464
|
def extractObjectFieldsTo(self, output):
|
12465
12465
|
r"""
|
12466
|
-
extractObjectFieldsTo(
|
12466
|
+
extractObjectFieldsTo(Robotics_Joints_FixedJoint self, ObjectVector output)
|
12467
12467
|
|
12468
12468
|
Parameters
|
12469
12469
|
----------
|
12470
12470
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
12471
12471
|
|
12472
12472
|
"""
|
12473
|
-
return _RoboticsSwig.
|
12473
|
+
return _RoboticsSwig.Robotics_Joints_FixedJoint_extractObjectFieldsTo(self, output)
|
12474
12474
|
|
12475
12475
|
def extractEntriesTo(self, output):
|
12476
12476
|
r"""
|
12477
|
-
extractEntriesTo(
|
12477
|
+
extractEntriesTo(Robotics_Joints_FixedJoint self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
12478
12478
|
|
12479
12479
|
Parameters
|
12480
12480
|
----------
|
12481
12481
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
12482
12482
|
|
12483
12483
|
"""
|
12484
|
-
return _RoboticsSwig.
|
12484
|
+
return _RoboticsSwig.Robotics_Joints_FixedJoint_extractEntriesTo(self, output)
|
12485
12485
|
|
12486
12486
|
def triggerOnInit(self, context):
|
12487
12487
|
r"""
|
12488
|
-
triggerOnInit(
|
12488
|
+
triggerOnInit(Robotics_Joints_FixedJoint self, openplx::RuntimeContext const & context)
|
12489
12489
|
|
12490
12490
|
Parameters
|
12491
12491
|
----------
|
12492
12492
|
context: openplx::RuntimeContext const &
|
12493
12493
|
|
12494
12494
|
"""
|
12495
|
-
return _RoboticsSwig.
|
12496
|
-
__swig_destroy__ = _RoboticsSwig.
|
12495
|
+
return _RoboticsSwig.Robotics_Joints_FixedJoint_triggerOnInit(self, context)
|
12496
|
+
__swig_destroy__ = _RoboticsSwig.delete_Robotics_Joints_FixedJoint
|
12497
12497
|
|
12498
|
-
# Register
|
12499
|
-
_RoboticsSwig.
|
12498
|
+
# Register Robotics_Joints_FixedJoint in _RoboticsSwig:
|
12499
|
+
_RoboticsSwig.Robotics_Joints_FixedJoint_swigregister(Robotics_Joints_FixedJoint)
|
12500
12500
|
|
12501
|
-
class
|
12501
|
+
class Robotics_Joints_HingeJoint(Robotics_Joints_ActuatedJoint):
|
12502
12502
|
r"""Proxy of C++ openplx::Robotics::Joints::HingeJoint class."""
|
12503
12503
|
|
12504
12504
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
12505
12505
|
__repr__ = _swig_repr
|
12506
12506
|
|
12507
12507
|
def __init__(self):
|
12508
|
-
r"""__init__(
|
12509
|
-
_RoboticsSwig.
|
12508
|
+
r"""__init__(Robotics_Joints_HingeJoint self) -> Robotics_Joints_HingeJoint"""
|
12509
|
+
_RoboticsSwig.Robotics_Joints_HingeJoint_swiginit(self, _RoboticsSwig.new_Robotics_Joints_HingeJoint())
|
12510
12510
|
|
12511
12511
|
def mate(self):
|
12512
|
-
r"""mate(
|
12513
|
-
return _RoboticsSwig.
|
12512
|
+
r"""mate(Robotics_Joints_HingeJoint self) -> std::shared_ptr< openplx::Physics3D::Interactions::Hinge >"""
|
12513
|
+
return _RoboticsSwig.Robotics_Joints_HingeJoint_mate(self)
|
12514
12514
|
|
12515
12515
|
def range(self):
|
12516
|
-
r"""range(
|
12517
|
-
return _RoboticsSwig.
|
12516
|
+
r"""range(Robotics_Joints_HingeJoint self) -> std::shared_ptr< openplx::Physics3D::Interactions::RotationalRange >"""
|
12517
|
+
return _RoboticsSwig.Robotics_Joints_HingeJoint_range(self)
|
12518
12518
|
|
12519
12519
|
def setDynamic(self, key, value):
|
12520
12520
|
r"""
|
12521
|
-
setDynamic(
|
12521
|
+
setDynamic(Robotics_Joints_HingeJoint self, std::string const & key, Any value)
|
12522
12522
|
|
12523
12523
|
Parameters
|
12524
12524
|
----------
|
@@ -12526,22 +12526,22 @@ class Joints_HingeJoint(Joints_ActuatedJoint):
|
|
12526
12526
|
value: openplx::Core::Any &&
|
12527
12527
|
|
12528
12528
|
"""
|
12529
|
-
return _RoboticsSwig.
|
12529
|
+
return _RoboticsSwig.Robotics_Joints_HingeJoint_setDynamic(self, key, value)
|
12530
12530
|
|
12531
12531
|
def getDynamic(self, key):
|
12532
12532
|
r"""
|
12533
|
-
getDynamic(
|
12533
|
+
getDynamic(Robotics_Joints_HingeJoint self, std::string const & key) -> Any
|
12534
12534
|
|
12535
12535
|
Parameters
|
12536
12536
|
----------
|
12537
12537
|
key: std::string const &
|
12538
12538
|
|
12539
12539
|
"""
|
12540
|
-
return _RoboticsSwig.
|
12540
|
+
return _RoboticsSwig.Robotics_Joints_HingeJoint_getDynamic(self, key)
|
12541
12541
|
|
12542
12542
|
def callDynamic(self, key, args):
|
12543
12543
|
r"""
|
12544
|
-
callDynamic(
|
12544
|
+
callDynamic(Robotics_Joints_HingeJoint self, std::string const & key, AnyVector args) -> Any
|
12545
12545
|
|
12546
12546
|
Parameters
|
12547
12547
|
----------
|
@@ -12549,44 +12549,44 @@ class Joints_HingeJoint(Joints_ActuatedJoint):
|
|
12549
12549
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
12550
12550
|
|
12551
12551
|
"""
|
12552
|
-
return _RoboticsSwig.
|
12552
|
+
return _RoboticsSwig.Robotics_Joints_HingeJoint_callDynamic(self, key, args)
|
12553
12553
|
|
12554
12554
|
def extractObjectFieldsTo(self, output):
|
12555
12555
|
r"""
|
12556
|
-
extractObjectFieldsTo(
|
12556
|
+
extractObjectFieldsTo(Robotics_Joints_HingeJoint self, ObjectVector output)
|
12557
12557
|
|
12558
12558
|
Parameters
|
12559
12559
|
----------
|
12560
12560
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
12561
12561
|
|
12562
12562
|
"""
|
12563
|
-
return _RoboticsSwig.
|
12563
|
+
return _RoboticsSwig.Robotics_Joints_HingeJoint_extractObjectFieldsTo(self, output)
|
12564
12564
|
|
12565
12565
|
def extractEntriesTo(self, output):
|
12566
12566
|
r"""
|
12567
|
-
extractEntriesTo(
|
12567
|
+
extractEntriesTo(Robotics_Joints_HingeJoint self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
12568
12568
|
|
12569
12569
|
Parameters
|
12570
12570
|
----------
|
12571
12571
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
12572
12572
|
|
12573
12573
|
"""
|
12574
|
-
return _RoboticsSwig.
|
12574
|
+
return _RoboticsSwig.Robotics_Joints_HingeJoint_extractEntriesTo(self, output)
|
12575
12575
|
|
12576
12576
|
def triggerOnInit(self, context):
|
12577
12577
|
r"""
|
12578
|
-
triggerOnInit(
|
12578
|
+
triggerOnInit(Robotics_Joints_HingeJoint self, openplx::RuntimeContext const & context)
|
12579
12579
|
|
12580
12580
|
Parameters
|
12581
12581
|
----------
|
12582
12582
|
context: openplx::RuntimeContext const &
|
12583
12583
|
|
12584
12584
|
"""
|
12585
|
-
return _RoboticsSwig.
|
12586
|
-
__swig_destroy__ = _RoboticsSwig.
|
12585
|
+
return _RoboticsSwig.Robotics_Joints_HingeJoint_triggerOnInit(self, context)
|
12586
|
+
__swig_destroy__ = _RoboticsSwig.delete_Robotics_Joints_HingeJoint
|
12587
12587
|
|
12588
|
-
# Register
|
12589
|
-
_RoboticsSwig.
|
12588
|
+
# Register Robotics_Joints_HingeJoint in _RoboticsSwig:
|
12589
|
+
_RoboticsSwig.Robotics_Joints_HingeJoint_swigregister(Robotics_Joints_HingeJoint)
|
12590
12590
|
|
12591
12591
|
class FlexibleJointTrait(object):
|
12592
12592
|
r"""Proxy of C++ openplx::Robotics::Joints::FlexibleJointTrait class."""
|
@@ -12605,27 +12605,27 @@ class FlexibleJointTrait(object):
|
|
12605
12605
|
# Register FlexibleJointTrait in _RoboticsSwig:
|
12606
12606
|
_RoboticsSwig.FlexibleJointTrait_swigregister(FlexibleJointTrait)
|
12607
12607
|
|
12608
|
-
class
|
12608
|
+
class Robotics_Joints_FlexibleAngularVelocityJoint(Robotics_Joints_HingeJoint, FlexibleJointTrait):
|
12609
12609
|
r"""Proxy of C++ openplx::Robotics::Joints::FlexibleAngularVelocityJoint class."""
|
12610
12610
|
|
12611
12611
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
12612
12612
|
__repr__ = _swig_repr
|
12613
12613
|
|
12614
12614
|
def __init__(self):
|
12615
|
-
r"""__init__(
|
12616
|
-
_RoboticsSwig.
|
12615
|
+
r"""__init__(Robotics_Joints_FlexibleAngularVelocityJoint self) -> Robotics_Joints_FlexibleAngularVelocityJoint"""
|
12616
|
+
_RoboticsSwig.Robotics_Joints_FlexibleAngularVelocityJoint_swiginit(self, _RoboticsSwig.new_Robotics_Joints_FlexibleAngularVelocityJoint())
|
12617
12617
|
|
12618
12618
|
def drive_train(self):
|
12619
|
-
r"""drive_train(
|
12620
|
-
return _RoboticsSwig.
|
12619
|
+
r"""drive_train(Robotics_Joints_FlexibleAngularVelocityJoint self) -> std::shared_ptr< openplx::Robotics::Joints::FlexibleJointDriveTrain >"""
|
12620
|
+
return _RoboticsSwig.Robotics_Joints_FlexibleAngularVelocityJoint_drive_train(self)
|
12621
12621
|
|
12622
12622
|
def actuator(self):
|
12623
|
-
r"""actuator(
|
12624
|
-
return _RoboticsSwig.
|
12623
|
+
r"""actuator(Robotics_Joints_FlexibleAngularVelocityJoint self) -> std::shared_ptr< openplx::Physics1D::Interactions::RotationalVelocityMotor >"""
|
12624
|
+
return _RoboticsSwig.Robotics_Joints_FlexibleAngularVelocityJoint_actuator(self)
|
12625
12625
|
|
12626
12626
|
def setDynamic(self, key, value):
|
12627
12627
|
r"""
|
12628
|
-
setDynamic(
|
12628
|
+
setDynamic(Robotics_Joints_FlexibleAngularVelocityJoint self, std::string const & key, Any value)
|
12629
12629
|
|
12630
12630
|
Parameters
|
12631
12631
|
----------
|
@@ -12633,22 +12633,22 @@ class Joints_FlexibleAngularVelocityJoint(Joints_HingeJoint, FlexibleJointTrait)
|
|
12633
12633
|
value: openplx::Core::Any &&
|
12634
12634
|
|
12635
12635
|
"""
|
12636
|
-
return _RoboticsSwig.
|
12636
|
+
return _RoboticsSwig.Robotics_Joints_FlexibleAngularVelocityJoint_setDynamic(self, key, value)
|
12637
12637
|
|
12638
12638
|
def getDynamic(self, key):
|
12639
12639
|
r"""
|
12640
|
-
getDynamic(
|
12640
|
+
getDynamic(Robotics_Joints_FlexibleAngularVelocityJoint self, std::string const & key) -> Any
|
12641
12641
|
|
12642
12642
|
Parameters
|
12643
12643
|
----------
|
12644
12644
|
key: std::string const &
|
12645
12645
|
|
12646
12646
|
"""
|
12647
|
-
return _RoboticsSwig.
|
12647
|
+
return _RoboticsSwig.Robotics_Joints_FlexibleAngularVelocityJoint_getDynamic(self, key)
|
12648
12648
|
|
12649
12649
|
def callDynamic(self, key, args):
|
12650
12650
|
r"""
|
12651
|
-
callDynamic(
|
12651
|
+
callDynamic(Robotics_Joints_FlexibleAngularVelocityJoint self, std::string const & key, AnyVector args) -> Any
|
12652
12652
|
|
12653
12653
|
Parameters
|
12654
12654
|
----------
|
@@ -12656,58 +12656,58 @@ class Joints_FlexibleAngularVelocityJoint(Joints_HingeJoint, FlexibleJointTrait)
|
|
12656
12656
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
12657
12657
|
|
12658
12658
|
"""
|
12659
|
-
return _RoboticsSwig.
|
12659
|
+
return _RoboticsSwig.Robotics_Joints_FlexibleAngularVelocityJoint_callDynamic(self, key, args)
|
12660
12660
|
|
12661
12661
|
def extractObjectFieldsTo(self, output):
|
12662
12662
|
r"""
|
12663
|
-
extractObjectFieldsTo(
|
12663
|
+
extractObjectFieldsTo(Robotics_Joints_FlexibleAngularVelocityJoint self, ObjectVector output)
|
12664
12664
|
|
12665
12665
|
Parameters
|
12666
12666
|
----------
|
12667
12667
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
12668
12668
|
|
12669
12669
|
"""
|
12670
|
-
return _RoboticsSwig.
|
12670
|
+
return _RoboticsSwig.Robotics_Joints_FlexibleAngularVelocityJoint_extractObjectFieldsTo(self, output)
|
12671
12671
|
|
12672
12672
|
def extractEntriesTo(self, output):
|
12673
12673
|
r"""
|
12674
|
-
extractEntriesTo(
|
12674
|
+
extractEntriesTo(Robotics_Joints_FlexibleAngularVelocityJoint self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
12675
12675
|
|
12676
12676
|
Parameters
|
12677
12677
|
----------
|
12678
12678
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
12679
12679
|
|
12680
12680
|
"""
|
12681
|
-
return _RoboticsSwig.
|
12681
|
+
return _RoboticsSwig.Robotics_Joints_FlexibleAngularVelocityJoint_extractEntriesTo(self, output)
|
12682
12682
|
|
12683
12683
|
def triggerOnInit(self, context):
|
12684
12684
|
r"""
|
12685
|
-
triggerOnInit(
|
12685
|
+
triggerOnInit(Robotics_Joints_FlexibleAngularVelocityJoint self, openplx::RuntimeContext const & context)
|
12686
12686
|
|
12687
12687
|
Parameters
|
12688
12688
|
----------
|
12689
12689
|
context: openplx::RuntimeContext const &
|
12690
12690
|
|
12691
12691
|
"""
|
12692
|
-
return _RoboticsSwig.
|
12693
|
-
__swig_destroy__ = _RoboticsSwig.
|
12692
|
+
return _RoboticsSwig.Robotics_Joints_FlexibleAngularVelocityJoint_triggerOnInit(self, context)
|
12693
|
+
__swig_destroy__ = _RoboticsSwig.delete_Robotics_Joints_FlexibleAngularVelocityJoint
|
12694
12694
|
|
12695
|
-
# Register
|
12696
|
-
_RoboticsSwig.
|
12695
|
+
# Register Robotics_Joints_FlexibleAngularVelocityJoint in _RoboticsSwig:
|
12696
|
+
_RoboticsSwig.Robotics_Joints_FlexibleAngularVelocityJoint_swigregister(Robotics_Joints_FlexibleAngularVelocityJoint)
|
12697
12697
|
|
12698
|
-
class
|
12698
|
+
class Robotics_Joints_JointData(openplx.Core.Object):
|
12699
12699
|
r"""Proxy of C++ openplx::Robotics::Joints::JointData class."""
|
12700
12700
|
|
12701
12701
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
12702
12702
|
__repr__ = _swig_repr
|
12703
12703
|
|
12704
12704
|
def __init__(self):
|
12705
|
-
r"""__init__(
|
12706
|
-
_RoboticsSwig.
|
12705
|
+
r"""__init__(Robotics_Joints_JointData self) -> Robotics_Joints_JointData"""
|
12706
|
+
_RoboticsSwig.Robotics_Joints_JointData_swiginit(self, _RoboticsSwig.new_Robotics_Joints_JointData())
|
12707
12707
|
|
12708
12708
|
def setDynamic(self, key, value):
|
12709
12709
|
r"""
|
12710
|
-
setDynamic(
|
12710
|
+
setDynamic(Robotics_Joints_JointData self, std::string const & key, Any value)
|
12711
12711
|
|
12712
12712
|
Parameters
|
12713
12713
|
----------
|
@@ -12715,22 +12715,22 @@ class Joints_JointData(openplx.Core.Object):
|
|
12715
12715
|
value: openplx::Core::Any &&
|
12716
12716
|
|
12717
12717
|
"""
|
12718
|
-
return _RoboticsSwig.
|
12718
|
+
return _RoboticsSwig.Robotics_Joints_JointData_setDynamic(self, key, value)
|
12719
12719
|
|
12720
12720
|
def getDynamic(self, key):
|
12721
12721
|
r"""
|
12722
|
-
getDynamic(
|
12722
|
+
getDynamic(Robotics_Joints_JointData self, std::string const & key) -> Any
|
12723
12723
|
|
12724
12724
|
Parameters
|
12725
12725
|
----------
|
12726
12726
|
key: std::string const &
|
12727
12727
|
|
12728
12728
|
"""
|
12729
|
-
return _RoboticsSwig.
|
12729
|
+
return _RoboticsSwig.Robotics_Joints_JointData_getDynamic(self, key)
|
12730
12730
|
|
12731
12731
|
def callDynamic(self, key, args):
|
12732
12732
|
r"""
|
12733
|
-
callDynamic(
|
12733
|
+
callDynamic(Robotics_Joints_JointData self, std::string const & key, AnyVector args) -> Any
|
12734
12734
|
|
12735
12735
|
Parameters
|
12736
12736
|
----------
|
@@ -12738,98 +12738,98 @@ class Joints_JointData(openplx.Core.Object):
|
|
12738
12738
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
12739
12739
|
|
12740
12740
|
"""
|
12741
|
-
return _RoboticsSwig.
|
12741
|
+
return _RoboticsSwig.Robotics_Joints_JointData_callDynamic(self, key, args)
|
12742
12742
|
|
12743
12743
|
def extractObjectFieldsTo(self, output):
|
12744
12744
|
r"""
|
12745
|
-
extractObjectFieldsTo(
|
12745
|
+
extractObjectFieldsTo(Robotics_Joints_JointData self, ObjectVector output)
|
12746
12746
|
|
12747
12747
|
Parameters
|
12748
12748
|
----------
|
12749
12749
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
12750
12750
|
|
12751
12751
|
"""
|
12752
|
-
return _RoboticsSwig.
|
12752
|
+
return _RoboticsSwig.Robotics_Joints_JointData_extractObjectFieldsTo(self, output)
|
12753
12753
|
|
12754
12754
|
def extractEntriesTo(self, output):
|
12755
12755
|
r"""
|
12756
|
-
extractEntriesTo(
|
12756
|
+
extractEntriesTo(Robotics_Joints_JointData self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
12757
12757
|
|
12758
12758
|
Parameters
|
12759
12759
|
----------
|
12760
12760
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
12761
12761
|
|
12762
12762
|
"""
|
12763
|
-
return _RoboticsSwig.
|
12763
|
+
return _RoboticsSwig.Robotics_Joints_JointData_extractEntriesTo(self, output)
|
12764
12764
|
|
12765
12765
|
def triggerOnInit(self, context):
|
12766
12766
|
r"""
|
12767
|
-
triggerOnInit(
|
12767
|
+
triggerOnInit(Robotics_Joints_JointData self, openplx::RuntimeContext const & context)
|
12768
12768
|
|
12769
12769
|
Parameters
|
12770
12770
|
----------
|
12771
12771
|
context: openplx::RuntimeContext const &
|
12772
12772
|
|
12773
12773
|
"""
|
12774
|
-
return _RoboticsSwig.
|
12775
|
-
__swig_destroy__ = _RoboticsSwig.
|
12774
|
+
return _RoboticsSwig.Robotics_Joints_JointData_triggerOnInit(self, context)
|
12775
|
+
__swig_destroy__ = _RoboticsSwig.delete_Robotics_Joints_JointData
|
12776
12776
|
|
12777
|
-
# Register
|
12778
|
-
_RoboticsSwig.
|
12777
|
+
# Register Robotics_Joints_JointData in _RoboticsSwig:
|
12778
|
+
_RoboticsSwig.Robotics_Joints_JointData_swigregister(Robotics_Joints_JointData)
|
12779
12779
|
|
12780
|
-
class
|
12780
|
+
class Robotics_Joints_HingeJointData(Robotics_Joints_JointData):
|
12781
12781
|
r"""Proxy of C++ openplx::Robotics::Joints::HingeJointData class."""
|
12782
12782
|
|
12783
12783
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
12784
12784
|
__repr__ = _swig_repr
|
12785
12785
|
|
12786
12786
|
def __init__(self):
|
12787
|
-
r"""__init__(
|
12788
|
-
_RoboticsSwig.
|
12787
|
+
r"""__init__(Robotics_Joints_HingeJointData self) -> Robotics_Joints_HingeJointData"""
|
12788
|
+
_RoboticsSwig.Robotics_Joints_HingeJointData_swiginit(self, _RoboticsSwig.new_Robotics_Joints_HingeJointData())
|
12789
12789
|
|
12790
12790
|
def stiffness_around_normal(self):
|
12791
|
-
r"""stiffness_around_normal(
|
12792
|
-
return _RoboticsSwig.
|
12791
|
+
r"""stiffness_around_normal(Robotics_Joints_HingeJointData self) -> double"""
|
12792
|
+
return _RoboticsSwig.Robotics_Joints_HingeJointData_stiffness_around_normal(self)
|
12793
12793
|
|
12794
12794
|
def stiffness_around_cross(self):
|
12795
|
-
r"""stiffness_around_cross(
|
12796
|
-
return _RoboticsSwig.
|
12795
|
+
r"""stiffness_around_cross(Robotics_Joints_HingeJointData self) -> double"""
|
12796
|
+
return _RoboticsSwig.Robotics_Joints_HingeJointData_stiffness_around_cross(self)
|
12797
12797
|
|
12798
12798
|
def stiffness_along_main(self):
|
12799
|
-
r"""stiffness_along_main(
|
12800
|
-
return _RoboticsSwig.
|
12799
|
+
r"""stiffness_along_main(Robotics_Joints_HingeJointData self) -> double"""
|
12800
|
+
return _RoboticsSwig.Robotics_Joints_HingeJointData_stiffness_along_main(self)
|
12801
12801
|
|
12802
12802
|
def stiffness_along_normal(self):
|
12803
|
-
r"""stiffness_along_normal(
|
12804
|
-
return _RoboticsSwig.
|
12803
|
+
r"""stiffness_along_normal(Robotics_Joints_HingeJointData self) -> double"""
|
12804
|
+
return _RoboticsSwig.Robotics_Joints_HingeJointData_stiffness_along_normal(self)
|
12805
12805
|
|
12806
12806
|
def stiffness_along_cross(self):
|
12807
|
-
r"""stiffness_along_cross(
|
12808
|
-
return _RoboticsSwig.
|
12807
|
+
r"""stiffness_along_cross(Robotics_Joints_HingeJointData self) -> double"""
|
12808
|
+
return _RoboticsSwig.Robotics_Joints_HingeJointData_stiffness_along_cross(self)
|
12809
12809
|
|
12810
12810
|
def damping_around_normal(self):
|
12811
|
-
r"""damping_around_normal(
|
12812
|
-
return _RoboticsSwig.
|
12811
|
+
r"""damping_around_normal(Robotics_Joints_HingeJointData self) -> double"""
|
12812
|
+
return _RoboticsSwig.Robotics_Joints_HingeJointData_damping_around_normal(self)
|
12813
12813
|
|
12814
12814
|
def damping_around_cross(self):
|
12815
|
-
r"""damping_around_cross(
|
12816
|
-
return _RoboticsSwig.
|
12815
|
+
r"""damping_around_cross(Robotics_Joints_HingeJointData self) -> double"""
|
12816
|
+
return _RoboticsSwig.Robotics_Joints_HingeJointData_damping_around_cross(self)
|
12817
12817
|
|
12818
12818
|
def damping_along_main(self):
|
12819
|
-
r"""damping_along_main(
|
12820
|
-
return _RoboticsSwig.
|
12819
|
+
r"""damping_along_main(Robotics_Joints_HingeJointData self) -> double"""
|
12820
|
+
return _RoboticsSwig.Robotics_Joints_HingeJointData_damping_along_main(self)
|
12821
12821
|
|
12822
12822
|
def damping_along_normal(self):
|
12823
|
-
r"""damping_along_normal(
|
12824
|
-
return _RoboticsSwig.
|
12823
|
+
r"""damping_along_normal(Robotics_Joints_HingeJointData self) -> double"""
|
12824
|
+
return _RoboticsSwig.Robotics_Joints_HingeJointData_damping_along_normal(self)
|
12825
12825
|
|
12826
12826
|
def damping_along_cross(self):
|
12827
|
-
r"""damping_along_cross(
|
12828
|
-
return _RoboticsSwig.
|
12827
|
+
r"""damping_along_cross(Robotics_Joints_HingeJointData self) -> double"""
|
12828
|
+
return _RoboticsSwig.Robotics_Joints_HingeJointData_damping_along_cross(self)
|
12829
12829
|
|
12830
12830
|
def setDynamic(self, key, value):
|
12831
12831
|
r"""
|
12832
|
-
setDynamic(
|
12832
|
+
setDynamic(Robotics_Joints_HingeJointData self, std::string const & key, Any value)
|
12833
12833
|
|
12834
12834
|
Parameters
|
12835
12835
|
----------
|
@@ -12837,22 +12837,22 @@ class Joints_HingeJointData(Joints_JointData):
|
|
12837
12837
|
value: openplx::Core::Any &&
|
12838
12838
|
|
12839
12839
|
"""
|
12840
|
-
return _RoboticsSwig.
|
12840
|
+
return _RoboticsSwig.Robotics_Joints_HingeJointData_setDynamic(self, key, value)
|
12841
12841
|
|
12842
12842
|
def getDynamic(self, key):
|
12843
12843
|
r"""
|
12844
|
-
getDynamic(
|
12844
|
+
getDynamic(Robotics_Joints_HingeJointData self, std::string const & key) -> Any
|
12845
12845
|
|
12846
12846
|
Parameters
|
12847
12847
|
----------
|
12848
12848
|
key: std::string const &
|
12849
12849
|
|
12850
12850
|
"""
|
12851
|
-
return _RoboticsSwig.
|
12851
|
+
return _RoboticsSwig.Robotics_Joints_HingeJointData_getDynamic(self, key)
|
12852
12852
|
|
12853
12853
|
def callDynamic(self, key, args):
|
12854
12854
|
r"""
|
12855
|
-
callDynamic(
|
12855
|
+
callDynamic(Robotics_Joints_HingeJointData self, std::string const & key, AnyVector args) -> Any
|
12856
12856
|
|
12857
12857
|
Parameters
|
12858
12858
|
----------
|
@@ -12860,82 +12860,82 @@ class Joints_HingeJointData(Joints_JointData):
|
|
12860
12860
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
12861
12861
|
|
12862
12862
|
"""
|
12863
|
-
return _RoboticsSwig.
|
12863
|
+
return _RoboticsSwig.Robotics_Joints_HingeJointData_callDynamic(self, key, args)
|
12864
12864
|
|
12865
12865
|
def extractObjectFieldsTo(self, output):
|
12866
12866
|
r"""
|
12867
|
-
extractObjectFieldsTo(
|
12867
|
+
extractObjectFieldsTo(Robotics_Joints_HingeJointData self, ObjectVector output)
|
12868
12868
|
|
12869
12869
|
Parameters
|
12870
12870
|
----------
|
12871
12871
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
12872
12872
|
|
12873
12873
|
"""
|
12874
|
-
return _RoboticsSwig.
|
12874
|
+
return _RoboticsSwig.Robotics_Joints_HingeJointData_extractObjectFieldsTo(self, output)
|
12875
12875
|
|
12876
12876
|
def extractEntriesTo(self, output):
|
12877
12877
|
r"""
|
12878
|
-
extractEntriesTo(
|
12878
|
+
extractEntriesTo(Robotics_Joints_HingeJointData self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
12879
12879
|
|
12880
12880
|
Parameters
|
12881
12881
|
----------
|
12882
12882
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
12883
12883
|
|
12884
12884
|
"""
|
12885
|
-
return _RoboticsSwig.
|
12885
|
+
return _RoboticsSwig.Robotics_Joints_HingeJointData_extractEntriesTo(self, output)
|
12886
12886
|
|
12887
12887
|
def triggerOnInit(self, context):
|
12888
12888
|
r"""
|
12889
|
-
triggerOnInit(
|
12889
|
+
triggerOnInit(Robotics_Joints_HingeJointData self, openplx::RuntimeContext const & context)
|
12890
12890
|
|
12891
12891
|
Parameters
|
12892
12892
|
----------
|
12893
12893
|
context: openplx::RuntimeContext const &
|
12894
12894
|
|
12895
12895
|
"""
|
12896
|
-
return _RoboticsSwig.
|
12897
|
-
__swig_destroy__ = _RoboticsSwig.
|
12896
|
+
return _RoboticsSwig.Robotics_Joints_HingeJointData_triggerOnInit(self, context)
|
12897
|
+
__swig_destroy__ = _RoboticsSwig.delete_Robotics_Joints_HingeJointData
|
12898
12898
|
|
12899
|
-
# Register
|
12900
|
-
_RoboticsSwig.
|
12899
|
+
# Register Robotics_Joints_HingeJointData in _RoboticsSwig:
|
12900
|
+
_RoboticsSwig.Robotics_Joints_HingeJointData_swigregister(Robotics_Joints_HingeJointData)
|
12901
12901
|
|
12902
|
-
class
|
12902
|
+
class Robotics_Joints_FlexibleJointData(Robotics_Joints_HingeJointData):
|
12903
12903
|
r"""Proxy of C++ openplx::Robotics::Joints::FlexibleJointData class."""
|
12904
12904
|
|
12905
12905
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
12906
12906
|
__repr__ = _swig_repr
|
12907
12907
|
|
12908
12908
|
def __init__(self):
|
12909
|
-
r"""__init__(
|
12910
|
-
_RoboticsSwig.
|
12909
|
+
r"""__init__(Robotics_Joints_FlexibleJointData self) -> Robotics_Joints_FlexibleJointData"""
|
12910
|
+
_RoboticsSwig.Robotics_Joints_FlexibleJointData_swiginit(self, _RoboticsSwig.new_Robotics_Joints_FlexibleJointData())
|
12911
12911
|
|
12912
12912
|
def motor_damping(self):
|
12913
|
-
r"""motor_damping(
|
12914
|
-
return _RoboticsSwig.
|
12913
|
+
r"""motor_damping(Robotics_Joints_FlexibleJointData self) -> double"""
|
12914
|
+
return _RoboticsSwig.Robotics_Joints_FlexibleJointData_motor_damping(self)
|
12915
12915
|
|
12916
12916
|
def motor_inertia(self):
|
12917
|
-
r"""motor_inertia(
|
12918
|
-
return _RoboticsSwig.
|
12917
|
+
r"""motor_inertia(Robotics_Joints_FlexibleJointData self) -> double"""
|
12918
|
+
return _RoboticsSwig.Robotics_Joints_FlexibleJointData_motor_inertia(self)
|
12919
12919
|
|
12920
12920
|
def motor_stiffness(self):
|
12921
|
-
r"""motor_stiffness(
|
12922
|
-
return _RoboticsSwig.
|
12921
|
+
r"""motor_stiffness(Robotics_Joints_FlexibleJointData self) -> double"""
|
12922
|
+
return _RoboticsSwig.Robotics_Joints_FlexibleJointData_motor_stiffness(self)
|
12923
12923
|
|
12924
12924
|
def gear_inertia(self):
|
12925
|
-
r"""gear_inertia(
|
12926
|
-
return _RoboticsSwig.
|
12925
|
+
r"""gear_inertia(Robotics_Joints_FlexibleJointData self) -> double"""
|
12926
|
+
return _RoboticsSwig.Robotics_Joints_FlexibleJointData_gear_inertia(self)
|
12927
12927
|
|
12928
12928
|
def gear_ratio(self):
|
12929
|
-
r"""gear_ratio(
|
12930
|
-
return _RoboticsSwig.
|
12929
|
+
r"""gear_ratio(Robotics_Joints_FlexibleJointData self) -> double"""
|
12930
|
+
return _RoboticsSwig.Robotics_Joints_FlexibleJointData_gear_ratio(self)
|
12931
12931
|
|
12932
12932
|
def max_motor_torque(self):
|
12933
|
-
r"""max_motor_torque(
|
12934
|
-
return _RoboticsSwig.
|
12933
|
+
r"""max_motor_torque(Robotics_Joints_FlexibleJointData self) -> double"""
|
12934
|
+
return _RoboticsSwig.Robotics_Joints_FlexibleJointData_max_motor_torque(self)
|
12935
12935
|
|
12936
12936
|
def setDynamic(self, key, value):
|
12937
12937
|
r"""
|
12938
|
-
setDynamic(
|
12938
|
+
setDynamic(Robotics_Joints_FlexibleJointData self, std::string const & key, Any value)
|
12939
12939
|
|
12940
12940
|
Parameters
|
12941
12941
|
----------
|
@@ -12943,22 +12943,22 @@ class Joints_FlexibleJointData(Joints_HingeJointData):
|
|
12943
12943
|
value: openplx::Core::Any &&
|
12944
12944
|
|
12945
12945
|
"""
|
12946
|
-
return _RoboticsSwig.
|
12946
|
+
return _RoboticsSwig.Robotics_Joints_FlexibleJointData_setDynamic(self, key, value)
|
12947
12947
|
|
12948
12948
|
def getDynamic(self, key):
|
12949
12949
|
r"""
|
12950
|
-
getDynamic(
|
12950
|
+
getDynamic(Robotics_Joints_FlexibleJointData self, std::string const & key) -> Any
|
12951
12951
|
|
12952
12952
|
Parameters
|
12953
12953
|
----------
|
12954
12954
|
key: std::string const &
|
12955
12955
|
|
12956
12956
|
"""
|
12957
|
-
return _RoboticsSwig.
|
12957
|
+
return _RoboticsSwig.Robotics_Joints_FlexibleJointData_getDynamic(self, key)
|
12958
12958
|
|
12959
12959
|
def callDynamic(self, key, args):
|
12960
12960
|
r"""
|
12961
|
-
callDynamic(
|
12961
|
+
callDynamic(Robotics_Joints_FlexibleJointData self, std::string const & key, AnyVector args) -> Any
|
12962
12962
|
|
12963
12963
|
Parameters
|
12964
12964
|
----------
|
@@ -12966,78 +12966,78 @@ class Joints_FlexibleJointData(Joints_HingeJointData):
|
|
12966
12966
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
12967
12967
|
|
12968
12968
|
"""
|
12969
|
-
return _RoboticsSwig.
|
12969
|
+
return _RoboticsSwig.Robotics_Joints_FlexibleJointData_callDynamic(self, key, args)
|
12970
12970
|
|
12971
12971
|
def extractObjectFieldsTo(self, output):
|
12972
12972
|
r"""
|
12973
|
-
extractObjectFieldsTo(
|
12973
|
+
extractObjectFieldsTo(Robotics_Joints_FlexibleJointData self, ObjectVector output)
|
12974
12974
|
|
12975
12975
|
Parameters
|
12976
12976
|
----------
|
12977
12977
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
12978
12978
|
|
12979
12979
|
"""
|
12980
|
-
return _RoboticsSwig.
|
12980
|
+
return _RoboticsSwig.Robotics_Joints_FlexibleJointData_extractObjectFieldsTo(self, output)
|
12981
12981
|
|
12982
12982
|
def extractEntriesTo(self, output):
|
12983
12983
|
r"""
|
12984
|
-
extractEntriesTo(
|
12984
|
+
extractEntriesTo(Robotics_Joints_FlexibleJointData self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
12985
12985
|
|
12986
12986
|
Parameters
|
12987
12987
|
----------
|
12988
12988
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
12989
12989
|
|
12990
12990
|
"""
|
12991
|
-
return _RoboticsSwig.
|
12991
|
+
return _RoboticsSwig.Robotics_Joints_FlexibleJointData_extractEntriesTo(self, output)
|
12992
12992
|
|
12993
12993
|
def triggerOnInit(self, context):
|
12994
12994
|
r"""
|
12995
|
-
triggerOnInit(
|
12995
|
+
triggerOnInit(Robotics_Joints_FlexibleJointData self, openplx::RuntimeContext const & context)
|
12996
12996
|
|
12997
12997
|
Parameters
|
12998
12998
|
----------
|
12999
12999
|
context: openplx::RuntimeContext const &
|
13000
13000
|
|
13001
13001
|
"""
|
13002
|
-
return _RoboticsSwig.
|
13003
|
-
__swig_destroy__ = _RoboticsSwig.
|
13002
|
+
return _RoboticsSwig.Robotics_Joints_FlexibleJointData_triggerOnInit(self, context)
|
13003
|
+
__swig_destroy__ = _RoboticsSwig.delete_Robotics_Joints_FlexibleJointData
|
13004
13004
|
|
13005
|
-
# Register
|
13006
|
-
_RoboticsSwig.
|
13005
|
+
# Register Robotics_Joints_FlexibleJointData in _RoboticsSwig:
|
13006
|
+
_RoboticsSwig.Robotics_Joints_FlexibleJointData_swigregister(Robotics_Joints_FlexibleJointData)
|
13007
13007
|
|
13008
|
-
class
|
13008
|
+
class Robotics_Joints_FlexibleJointDriveTrain(openplx.Physics3D.Physics3D_System):
|
13009
13009
|
r"""Proxy of C++ openplx::Robotics::Joints::FlexibleJointDriveTrain class."""
|
13010
13010
|
|
13011
13011
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
13012
13012
|
__repr__ = _swig_repr
|
13013
13013
|
|
13014
13014
|
def __init__(self):
|
13015
|
-
r"""__init__(
|
13016
|
-
_RoboticsSwig.
|
13015
|
+
r"""__init__(Robotics_Joints_FlexibleJointDriveTrain self) -> Robotics_Joints_FlexibleJointDriveTrain"""
|
13016
|
+
_RoboticsSwig.Robotics_Joints_FlexibleJointDriveTrain_swiginit(self, _RoboticsSwig.new_Robotics_Joints_FlexibleJointDriveTrain())
|
13017
13017
|
|
13018
13018
|
def motor_shaft(self):
|
13019
|
-
r"""motor_shaft(
|
13020
|
-
return _RoboticsSwig.
|
13019
|
+
r"""motor_shaft(Robotics_Joints_FlexibleJointDriveTrain self) -> std::shared_ptr< openplx::DriveTrain::Shaft >"""
|
13020
|
+
return _RoboticsSwig.Robotics_Joints_FlexibleJointDriveTrain_motor_shaft(self)
|
13021
13021
|
|
13022
13022
|
def gear(self):
|
13023
|
-
r"""gear(
|
13024
|
-
return _RoboticsSwig.
|
13023
|
+
r"""gear(Robotics_Joints_FlexibleJointDriveTrain self) -> std::shared_ptr< openplx::DriveTrain::Gear >"""
|
13024
|
+
return _RoboticsSwig.Robotics_Joints_FlexibleJointDriveTrain_gear(self)
|
13025
13025
|
|
13026
13026
|
def gear_shaft(self):
|
13027
|
-
r"""gear_shaft(
|
13028
|
-
return _RoboticsSwig.
|
13027
|
+
r"""gear_shaft(Robotics_Joints_FlexibleJointDriveTrain self) -> std::shared_ptr< openplx::DriveTrain::Shaft >"""
|
13028
|
+
return _RoboticsSwig.Robotics_Joints_FlexibleJointDriveTrain_gear_shaft(self)
|
13029
13029
|
|
13030
13030
|
def sensor(self):
|
13031
|
-
r"""sensor(
|
13032
|
-
return _RoboticsSwig.
|
13031
|
+
r"""sensor(Robotics_Joints_FlexibleJointDriveTrain self) -> std::shared_ptr< openplx::Robotics::Signals::Sensor >"""
|
13032
|
+
return _RoboticsSwig.Robotics_Joints_FlexibleJointDriveTrain_sensor(self)
|
13033
13033
|
|
13034
13034
|
def hinge_actuator(self):
|
13035
|
-
r"""hinge_actuator(
|
13036
|
-
return _RoboticsSwig.
|
13035
|
+
r"""hinge_actuator(Robotics_Joints_FlexibleJointDriveTrain self) -> std::shared_ptr< openplx::DriveTrain::HingeActuator >"""
|
13036
|
+
return _RoboticsSwig.Robotics_Joints_FlexibleJointDriveTrain_hinge_actuator(self)
|
13037
13037
|
|
13038
13038
|
def setDynamic(self, key, value):
|
13039
13039
|
r"""
|
13040
|
-
setDynamic(
|
13040
|
+
setDynamic(Robotics_Joints_FlexibleJointDriveTrain self, std::string const & key, Any value)
|
13041
13041
|
|
13042
13042
|
Parameters
|
13043
13043
|
----------
|
@@ -13045,22 +13045,22 @@ class Joints_FlexibleJointDriveTrain(openplx.Physics3D.System):
|
|
13045
13045
|
value: openplx::Core::Any &&
|
13046
13046
|
|
13047
13047
|
"""
|
13048
|
-
return _RoboticsSwig.
|
13048
|
+
return _RoboticsSwig.Robotics_Joints_FlexibleJointDriveTrain_setDynamic(self, key, value)
|
13049
13049
|
|
13050
13050
|
def getDynamic(self, key):
|
13051
13051
|
r"""
|
13052
|
-
getDynamic(
|
13052
|
+
getDynamic(Robotics_Joints_FlexibleJointDriveTrain self, std::string const & key) -> Any
|
13053
13053
|
|
13054
13054
|
Parameters
|
13055
13055
|
----------
|
13056
13056
|
key: std::string const &
|
13057
13057
|
|
13058
13058
|
"""
|
13059
|
-
return _RoboticsSwig.
|
13059
|
+
return _RoboticsSwig.Robotics_Joints_FlexibleJointDriveTrain_getDynamic(self, key)
|
13060
13060
|
|
13061
13061
|
def callDynamic(self, key, args):
|
13062
13062
|
r"""
|
13063
|
-
callDynamic(
|
13063
|
+
callDynamic(Robotics_Joints_FlexibleJointDriveTrain self, std::string const & key, AnyVector args) -> Any
|
13064
13064
|
|
13065
13065
|
Parameters
|
13066
13066
|
----------
|
@@ -13068,66 +13068,66 @@ class Joints_FlexibleJointDriveTrain(openplx.Physics3D.System):
|
|
13068
13068
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
13069
13069
|
|
13070
13070
|
"""
|
13071
|
-
return _RoboticsSwig.
|
13071
|
+
return _RoboticsSwig.Robotics_Joints_FlexibleJointDriveTrain_callDynamic(self, key, args)
|
13072
13072
|
|
13073
13073
|
def extractObjectFieldsTo(self, output):
|
13074
13074
|
r"""
|
13075
|
-
extractObjectFieldsTo(
|
13075
|
+
extractObjectFieldsTo(Robotics_Joints_FlexibleJointDriveTrain self, ObjectVector output)
|
13076
13076
|
|
13077
13077
|
Parameters
|
13078
13078
|
----------
|
13079
13079
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
13080
13080
|
|
13081
13081
|
"""
|
13082
|
-
return _RoboticsSwig.
|
13082
|
+
return _RoboticsSwig.Robotics_Joints_FlexibleJointDriveTrain_extractObjectFieldsTo(self, output)
|
13083
13083
|
|
13084
13084
|
def extractEntriesTo(self, output):
|
13085
13085
|
r"""
|
13086
|
-
extractEntriesTo(
|
13086
|
+
extractEntriesTo(Robotics_Joints_FlexibleJointDriveTrain self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
13087
13087
|
|
13088
13088
|
Parameters
|
13089
13089
|
----------
|
13090
13090
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
13091
13091
|
|
13092
13092
|
"""
|
13093
|
-
return _RoboticsSwig.
|
13093
|
+
return _RoboticsSwig.Robotics_Joints_FlexibleJointDriveTrain_extractEntriesTo(self, output)
|
13094
13094
|
|
13095
13095
|
def triggerOnInit(self, context):
|
13096
13096
|
r"""
|
13097
|
-
triggerOnInit(
|
13097
|
+
triggerOnInit(Robotics_Joints_FlexibleJointDriveTrain self, openplx::RuntimeContext const & context)
|
13098
13098
|
|
13099
13099
|
Parameters
|
13100
13100
|
----------
|
13101
13101
|
context: openplx::RuntimeContext const &
|
13102
13102
|
|
13103
13103
|
"""
|
13104
|
-
return _RoboticsSwig.
|
13105
|
-
__swig_destroy__ = _RoboticsSwig.
|
13104
|
+
return _RoboticsSwig.Robotics_Joints_FlexibleJointDriveTrain_triggerOnInit(self, context)
|
13105
|
+
__swig_destroy__ = _RoboticsSwig.delete_Robotics_Joints_FlexibleJointDriveTrain
|
13106
13106
|
|
13107
|
-
# Register
|
13108
|
-
_RoboticsSwig.
|
13107
|
+
# Register Robotics_Joints_FlexibleJointDriveTrain in _RoboticsSwig:
|
13108
|
+
_RoboticsSwig.Robotics_Joints_FlexibleJointDriveTrain_swigregister(Robotics_Joints_FlexibleJointDriveTrain)
|
13109
13109
|
|
13110
|
-
class
|
13110
|
+
class Robotics_Joints_FlexibleTorqueJoint(Robotics_Joints_HingeJoint, FlexibleJointTrait):
|
13111
13111
|
r"""Proxy of C++ openplx::Robotics::Joints::FlexibleTorqueJoint class."""
|
13112
13112
|
|
13113
13113
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
13114
13114
|
__repr__ = _swig_repr
|
13115
13115
|
|
13116
13116
|
def __init__(self):
|
13117
|
-
r"""__init__(
|
13118
|
-
_RoboticsSwig.
|
13117
|
+
r"""__init__(Robotics_Joints_FlexibleTorqueJoint self) -> Robotics_Joints_FlexibleTorqueJoint"""
|
13118
|
+
_RoboticsSwig.Robotics_Joints_FlexibleTorqueJoint_swiginit(self, _RoboticsSwig.new_Robotics_Joints_FlexibleTorqueJoint())
|
13119
13119
|
|
13120
13120
|
def drive_train(self):
|
13121
|
-
r"""drive_train(
|
13122
|
-
return _RoboticsSwig.
|
13121
|
+
r"""drive_train(Robotics_Joints_FlexibleTorqueJoint self) -> std::shared_ptr< openplx::Robotics::Joints::FlexibleJointDriveTrain >"""
|
13122
|
+
return _RoboticsSwig.Robotics_Joints_FlexibleTorqueJoint_drive_train(self)
|
13123
13123
|
|
13124
13124
|
def actuator(self):
|
13125
|
-
r"""actuator(
|
13126
|
-
return _RoboticsSwig.
|
13125
|
+
r"""actuator(Robotics_Joints_FlexibleTorqueJoint self) -> std::shared_ptr< openplx::DriveTrain::TorqueMotor >"""
|
13126
|
+
return _RoboticsSwig.Robotics_Joints_FlexibleTorqueJoint_actuator(self)
|
13127
13127
|
|
13128
13128
|
def setDynamic(self, key, value):
|
13129
13129
|
r"""
|
13130
|
-
setDynamic(
|
13130
|
+
setDynamic(Robotics_Joints_FlexibleTorqueJoint self, std::string const & key, Any value)
|
13131
13131
|
|
13132
13132
|
Parameters
|
13133
13133
|
----------
|
@@ -13135,22 +13135,22 @@ class Joints_FlexibleTorqueJoint(Joints_HingeJoint, FlexibleJointTrait):
|
|
13135
13135
|
value: openplx::Core::Any &&
|
13136
13136
|
|
13137
13137
|
"""
|
13138
|
-
return _RoboticsSwig.
|
13138
|
+
return _RoboticsSwig.Robotics_Joints_FlexibleTorqueJoint_setDynamic(self, key, value)
|
13139
13139
|
|
13140
13140
|
def getDynamic(self, key):
|
13141
13141
|
r"""
|
13142
|
-
getDynamic(
|
13142
|
+
getDynamic(Robotics_Joints_FlexibleTorqueJoint self, std::string const & key) -> Any
|
13143
13143
|
|
13144
13144
|
Parameters
|
13145
13145
|
----------
|
13146
13146
|
key: std::string const &
|
13147
13147
|
|
13148
13148
|
"""
|
13149
|
-
return _RoboticsSwig.
|
13149
|
+
return _RoboticsSwig.Robotics_Joints_FlexibleTorqueJoint_getDynamic(self, key)
|
13150
13150
|
|
13151
13151
|
def callDynamic(self, key, args):
|
13152
13152
|
r"""
|
13153
|
-
callDynamic(
|
13153
|
+
callDynamic(Robotics_Joints_FlexibleTorqueJoint self, std::string const & key, AnyVector args) -> Any
|
13154
13154
|
|
13155
13155
|
Parameters
|
13156
13156
|
----------
|
@@ -13158,62 +13158,62 @@ class Joints_FlexibleTorqueJoint(Joints_HingeJoint, FlexibleJointTrait):
|
|
13158
13158
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
13159
13159
|
|
13160
13160
|
"""
|
13161
|
-
return _RoboticsSwig.
|
13161
|
+
return _RoboticsSwig.Robotics_Joints_FlexibleTorqueJoint_callDynamic(self, key, args)
|
13162
13162
|
|
13163
13163
|
def extractObjectFieldsTo(self, output):
|
13164
13164
|
r"""
|
13165
|
-
extractObjectFieldsTo(
|
13165
|
+
extractObjectFieldsTo(Robotics_Joints_FlexibleTorqueJoint self, ObjectVector output)
|
13166
13166
|
|
13167
13167
|
Parameters
|
13168
13168
|
----------
|
13169
13169
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
13170
13170
|
|
13171
13171
|
"""
|
13172
|
-
return _RoboticsSwig.
|
13172
|
+
return _RoboticsSwig.Robotics_Joints_FlexibleTorqueJoint_extractObjectFieldsTo(self, output)
|
13173
13173
|
|
13174
13174
|
def extractEntriesTo(self, output):
|
13175
13175
|
r"""
|
13176
|
-
extractEntriesTo(
|
13176
|
+
extractEntriesTo(Robotics_Joints_FlexibleTorqueJoint self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
13177
13177
|
|
13178
13178
|
Parameters
|
13179
13179
|
----------
|
13180
13180
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
13181
13181
|
|
13182
13182
|
"""
|
13183
|
-
return _RoboticsSwig.
|
13183
|
+
return _RoboticsSwig.Robotics_Joints_FlexibleTorqueJoint_extractEntriesTo(self, output)
|
13184
13184
|
|
13185
13185
|
def triggerOnInit(self, context):
|
13186
13186
|
r"""
|
13187
|
-
triggerOnInit(
|
13187
|
+
triggerOnInit(Robotics_Joints_FlexibleTorqueJoint self, openplx::RuntimeContext const & context)
|
13188
13188
|
|
13189
13189
|
Parameters
|
13190
13190
|
----------
|
13191
13191
|
context: openplx::RuntimeContext const &
|
13192
13192
|
|
13193
13193
|
"""
|
13194
|
-
return _RoboticsSwig.
|
13195
|
-
__swig_destroy__ = _RoboticsSwig.
|
13194
|
+
return _RoboticsSwig.Robotics_Joints_FlexibleTorqueJoint_triggerOnInit(self, context)
|
13195
|
+
__swig_destroy__ = _RoboticsSwig.delete_Robotics_Joints_FlexibleTorqueJoint
|
13196
13196
|
|
13197
|
-
# Register
|
13198
|
-
_RoboticsSwig.
|
13197
|
+
# Register Robotics_Joints_FlexibleTorqueJoint in _RoboticsSwig:
|
13198
|
+
_RoboticsSwig.Robotics_Joints_FlexibleTorqueJoint_swigregister(Robotics_Joints_FlexibleTorqueJoint)
|
13199
13199
|
|
13200
|
-
class
|
13200
|
+
class Robotics_Joints_PositionHingeJoint(Robotics_Joints_HingeJoint):
|
13201
13201
|
r"""Proxy of C++ openplx::Robotics::Joints::PositionHingeJoint class."""
|
13202
13202
|
|
13203
13203
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
13204
13204
|
__repr__ = _swig_repr
|
13205
13205
|
|
13206
13206
|
def __init__(self):
|
13207
|
-
r"""__init__(
|
13208
|
-
_RoboticsSwig.
|
13207
|
+
r"""__init__(Robotics_Joints_PositionHingeJoint self) -> Robotics_Joints_PositionHingeJoint"""
|
13208
|
+
_RoboticsSwig.Robotics_Joints_PositionHingeJoint_swiginit(self, _RoboticsSwig.new_Robotics_Joints_PositionHingeJoint())
|
13209
13209
|
|
13210
13210
|
def actuator(self):
|
13211
|
-
r"""actuator(
|
13212
|
-
return _RoboticsSwig.
|
13211
|
+
r"""actuator(Robotics_Joints_PositionHingeJoint self) -> std::shared_ptr< openplx::Physics3D::Interactions::TorsionSpring >"""
|
13212
|
+
return _RoboticsSwig.Robotics_Joints_PositionHingeJoint_actuator(self)
|
13213
13213
|
|
13214
13214
|
def setDynamic(self, key, value):
|
13215
13215
|
r"""
|
13216
|
-
setDynamic(
|
13216
|
+
setDynamic(Robotics_Joints_PositionHingeJoint self, std::string const & key, Any value)
|
13217
13217
|
|
13218
13218
|
Parameters
|
13219
13219
|
----------
|
@@ -13221,22 +13221,22 @@ class Joints_PositionHingeJoint(Joints_HingeJoint):
|
|
13221
13221
|
value: openplx::Core::Any &&
|
13222
13222
|
|
13223
13223
|
"""
|
13224
|
-
return _RoboticsSwig.
|
13224
|
+
return _RoboticsSwig.Robotics_Joints_PositionHingeJoint_setDynamic(self, key, value)
|
13225
13225
|
|
13226
13226
|
def getDynamic(self, key):
|
13227
13227
|
r"""
|
13228
|
-
getDynamic(
|
13228
|
+
getDynamic(Robotics_Joints_PositionHingeJoint self, std::string const & key) -> Any
|
13229
13229
|
|
13230
13230
|
Parameters
|
13231
13231
|
----------
|
13232
13232
|
key: std::string const &
|
13233
13233
|
|
13234
13234
|
"""
|
13235
|
-
return _RoboticsSwig.
|
13235
|
+
return _RoboticsSwig.Robotics_Joints_PositionHingeJoint_getDynamic(self, key)
|
13236
13236
|
|
13237
13237
|
def callDynamic(self, key, args):
|
13238
13238
|
r"""
|
13239
|
-
callDynamic(
|
13239
|
+
callDynamic(Robotics_Joints_PositionHingeJoint self, std::string const & key, AnyVector args) -> Any
|
13240
13240
|
|
13241
13241
|
Parameters
|
13242
13242
|
----------
|
@@ -13244,66 +13244,66 @@ class Joints_PositionHingeJoint(Joints_HingeJoint):
|
|
13244
13244
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
13245
13245
|
|
13246
13246
|
"""
|
13247
|
-
return _RoboticsSwig.
|
13247
|
+
return _RoboticsSwig.Robotics_Joints_PositionHingeJoint_callDynamic(self, key, args)
|
13248
13248
|
|
13249
13249
|
def extractObjectFieldsTo(self, output):
|
13250
13250
|
r"""
|
13251
|
-
extractObjectFieldsTo(
|
13251
|
+
extractObjectFieldsTo(Robotics_Joints_PositionHingeJoint self, ObjectVector output)
|
13252
13252
|
|
13253
13253
|
Parameters
|
13254
13254
|
----------
|
13255
13255
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
13256
13256
|
|
13257
13257
|
"""
|
13258
|
-
return _RoboticsSwig.
|
13258
|
+
return _RoboticsSwig.Robotics_Joints_PositionHingeJoint_extractObjectFieldsTo(self, output)
|
13259
13259
|
|
13260
13260
|
def extractEntriesTo(self, output):
|
13261
13261
|
r"""
|
13262
|
-
extractEntriesTo(
|
13262
|
+
extractEntriesTo(Robotics_Joints_PositionHingeJoint self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
13263
13263
|
|
13264
13264
|
Parameters
|
13265
13265
|
----------
|
13266
13266
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
13267
13267
|
|
13268
13268
|
"""
|
13269
|
-
return _RoboticsSwig.
|
13269
|
+
return _RoboticsSwig.Robotics_Joints_PositionHingeJoint_extractEntriesTo(self, output)
|
13270
13270
|
|
13271
13271
|
def triggerOnInit(self, context):
|
13272
13272
|
r"""
|
13273
|
-
triggerOnInit(
|
13273
|
+
triggerOnInit(Robotics_Joints_PositionHingeJoint self, openplx::RuntimeContext const & context)
|
13274
13274
|
|
13275
13275
|
Parameters
|
13276
13276
|
----------
|
13277
13277
|
context: openplx::RuntimeContext const &
|
13278
13278
|
|
13279
13279
|
"""
|
13280
|
-
return _RoboticsSwig.
|
13281
|
-
__swig_destroy__ = _RoboticsSwig.
|
13280
|
+
return _RoboticsSwig.Robotics_Joints_PositionHingeJoint_triggerOnInit(self, context)
|
13281
|
+
__swig_destroy__ = _RoboticsSwig.delete_Robotics_Joints_PositionHingeJoint
|
13282
13282
|
|
13283
|
-
# Register
|
13284
|
-
_RoboticsSwig.
|
13283
|
+
# Register Robotics_Joints_PositionHingeJoint in _RoboticsSwig:
|
13284
|
+
_RoboticsSwig.Robotics_Joints_PositionHingeJoint_swigregister(Robotics_Joints_PositionHingeJoint)
|
13285
13285
|
|
13286
|
-
class
|
13286
|
+
class Robotics_Joints_PrismaticJoint(Robotics_Joints_ActuatedJoint):
|
13287
13287
|
r"""Proxy of C++ openplx::Robotics::Joints::PrismaticJoint class."""
|
13288
13288
|
|
13289
13289
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
13290
13290
|
__repr__ = _swig_repr
|
13291
13291
|
|
13292
13292
|
def __init__(self):
|
13293
|
-
r"""__init__(
|
13294
|
-
_RoboticsSwig.
|
13293
|
+
r"""__init__(Robotics_Joints_PrismaticJoint self) -> Robotics_Joints_PrismaticJoint"""
|
13294
|
+
_RoboticsSwig.Robotics_Joints_PrismaticJoint_swiginit(self, _RoboticsSwig.new_Robotics_Joints_PrismaticJoint())
|
13295
13295
|
|
13296
13296
|
def mate(self):
|
13297
|
-
r"""mate(
|
13298
|
-
return _RoboticsSwig.
|
13297
|
+
r"""mate(Robotics_Joints_PrismaticJoint self) -> std::shared_ptr< openplx::Physics3D::Interactions::Prismatic >"""
|
13298
|
+
return _RoboticsSwig.Robotics_Joints_PrismaticJoint_mate(self)
|
13299
13299
|
|
13300
13300
|
def range(self):
|
13301
|
-
r"""range(
|
13302
|
-
return _RoboticsSwig.
|
13301
|
+
r"""range(Robotics_Joints_PrismaticJoint self) -> std::shared_ptr< openplx::Physics3D::Interactions::LinearRange >"""
|
13302
|
+
return _RoboticsSwig.Robotics_Joints_PrismaticJoint_range(self)
|
13303
13303
|
|
13304
13304
|
def setDynamic(self, key, value):
|
13305
13305
|
r"""
|
13306
|
-
setDynamic(
|
13306
|
+
setDynamic(Robotics_Joints_PrismaticJoint self, std::string const & key, Any value)
|
13307
13307
|
|
13308
13308
|
Parameters
|
13309
13309
|
----------
|
@@ -13311,22 +13311,22 @@ class Joints_PrismaticJoint(Joints_ActuatedJoint):
|
|
13311
13311
|
value: openplx::Core::Any &&
|
13312
13312
|
|
13313
13313
|
"""
|
13314
|
-
return _RoboticsSwig.
|
13314
|
+
return _RoboticsSwig.Robotics_Joints_PrismaticJoint_setDynamic(self, key, value)
|
13315
13315
|
|
13316
13316
|
def getDynamic(self, key):
|
13317
13317
|
r"""
|
13318
|
-
getDynamic(
|
13318
|
+
getDynamic(Robotics_Joints_PrismaticJoint self, std::string const & key) -> Any
|
13319
13319
|
|
13320
13320
|
Parameters
|
13321
13321
|
----------
|
13322
13322
|
key: std::string const &
|
13323
13323
|
|
13324
13324
|
"""
|
13325
|
-
return _RoboticsSwig.
|
13325
|
+
return _RoboticsSwig.Robotics_Joints_PrismaticJoint_getDynamic(self, key)
|
13326
13326
|
|
13327
13327
|
def callDynamic(self, key, args):
|
13328
13328
|
r"""
|
13329
|
-
callDynamic(
|
13329
|
+
callDynamic(Robotics_Joints_PrismaticJoint self, std::string const & key, AnyVector args) -> Any
|
13330
13330
|
|
13331
13331
|
Parameters
|
13332
13332
|
----------
|
@@ -13334,62 +13334,62 @@ class Joints_PrismaticJoint(Joints_ActuatedJoint):
|
|
13334
13334
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
13335
13335
|
|
13336
13336
|
"""
|
13337
|
-
return _RoboticsSwig.
|
13337
|
+
return _RoboticsSwig.Robotics_Joints_PrismaticJoint_callDynamic(self, key, args)
|
13338
13338
|
|
13339
13339
|
def extractObjectFieldsTo(self, output):
|
13340
13340
|
r"""
|
13341
|
-
extractObjectFieldsTo(
|
13341
|
+
extractObjectFieldsTo(Robotics_Joints_PrismaticJoint self, ObjectVector output)
|
13342
13342
|
|
13343
13343
|
Parameters
|
13344
13344
|
----------
|
13345
13345
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
13346
13346
|
|
13347
13347
|
"""
|
13348
|
-
return _RoboticsSwig.
|
13348
|
+
return _RoboticsSwig.Robotics_Joints_PrismaticJoint_extractObjectFieldsTo(self, output)
|
13349
13349
|
|
13350
13350
|
def extractEntriesTo(self, output):
|
13351
13351
|
r"""
|
13352
|
-
extractEntriesTo(
|
13352
|
+
extractEntriesTo(Robotics_Joints_PrismaticJoint self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
13353
13353
|
|
13354
13354
|
Parameters
|
13355
13355
|
----------
|
13356
13356
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
13357
13357
|
|
13358
13358
|
"""
|
13359
|
-
return _RoboticsSwig.
|
13359
|
+
return _RoboticsSwig.Robotics_Joints_PrismaticJoint_extractEntriesTo(self, output)
|
13360
13360
|
|
13361
13361
|
def triggerOnInit(self, context):
|
13362
13362
|
r"""
|
13363
|
-
triggerOnInit(
|
13363
|
+
triggerOnInit(Robotics_Joints_PrismaticJoint self, openplx::RuntimeContext const & context)
|
13364
13364
|
|
13365
13365
|
Parameters
|
13366
13366
|
----------
|
13367
13367
|
context: openplx::RuntimeContext const &
|
13368
13368
|
|
13369
13369
|
"""
|
13370
|
-
return _RoboticsSwig.
|
13371
|
-
__swig_destroy__ = _RoboticsSwig.
|
13370
|
+
return _RoboticsSwig.Robotics_Joints_PrismaticJoint_triggerOnInit(self, context)
|
13371
|
+
__swig_destroy__ = _RoboticsSwig.delete_Robotics_Joints_PrismaticJoint
|
13372
13372
|
|
13373
|
-
# Register
|
13374
|
-
_RoboticsSwig.
|
13373
|
+
# Register Robotics_Joints_PrismaticJoint in _RoboticsSwig:
|
13374
|
+
_RoboticsSwig.Robotics_Joints_PrismaticJoint_swigregister(Robotics_Joints_PrismaticJoint)
|
13375
13375
|
|
13376
|
-
class
|
13376
|
+
class Robotics_Joints_TorqueHingeJoint(Robotics_Joints_HingeJoint):
|
13377
13377
|
r"""Proxy of C++ openplx::Robotics::Joints::TorqueHingeJoint class."""
|
13378
13378
|
|
13379
13379
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
13380
13380
|
__repr__ = _swig_repr
|
13381
13381
|
|
13382
13382
|
def __init__(self):
|
13383
|
-
r"""__init__(
|
13384
|
-
_RoboticsSwig.
|
13383
|
+
r"""__init__(Robotics_Joints_TorqueHingeJoint self) -> Robotics_Joints_TorqueHingeJoint"""
|
13384
|
+
_RoboticsSwig.Robotics_Joints_TorqueHingeJoint_swiginit(self, _RoboticsSwig.new_Robotics_Joints_TorqueHingeJoint())
|
13385
13385
|
|
13386
13386
|
def actuator(self):
|
13387
|
-
r"""actuator(
|
13388
|
-
return _RoboticsSwig.
|
13387
|
+
r"""actuator(Robotics_Joints_TorqueHingeJoint self) -> std::shared_ptr< openplx::Physics3D::Interactions::TorqueMotor >"""
|
13388
|
+
return _RoboticsSwig.Robotics_Joints_TorqueHingeJoint_actuator(self)
|
13389
13389
|
|
13390
13390
|
def setDynamic(self, key, value):
|
13391
13391
|
r"""
|
13392
|
-
setDynamic(
|
13392
|
+
setDynamic(Robotics_Joints_TorqueHingeJoint self, std::string const & key, Any value)
|
13393
13393
|
|
13394
13394
|
Parameters
|
13395
13395
|
----------
|
@@ -13397,22 +13397,22 @@ class Joints_TorqueHingeJoint(Joints_HingeJoint):
|
|
13397
13397
|
value: openplx::Core::Any &&
|
13398
13398
|
|
13399
13399
|
"""
|
13400
|
-
return _RoboticsSwig.
|
13400
|
+
return _RoboticsSwig.Robotics_Joints_TorqueHingeJoint_setDynamic(self, key, value)
|
13401
13401
|
|
13402
13402
|
def getDynamic(self, key):
|
13403
13403
|
r"""
|
13404
|
-
getDynamic(
|
13404
|
+
getDynamic(Robotics_Joints_TorqueHingeJoint self, std::string const & key) -> Any
|
13405
13405
|
|
13406
13406
|
Parameters
|
13407
13407
|
----------
|
13408
13408
|
key: std::string const &
|
13409
13409
|
|
13410
13410
|
"""
|
13411
|
-
return _RoboticsSwig.
|
13411
|
+
return _RoboticsSwig.Robotics_Joints_TorqueHingeJoint_getDynamic(self, key)
|
13412
13412
|
|
13413
13413
|
def callDynamic(self, key, args):
|
13414
13414
|
r"""
|
13415
|
-
callDynamic(
|
13415
|
+
callDynamic(Robotics_Joints_TorqueHingeJoint self, std::string const & key, AnyVector args) -> Any
|
13416
13416
|
|
13417
13417
|
Parameters
|
13418
13418
|
----------
|
@@ -13420,62 +13420,62 @@ class Joints_TorqueHingeJoint(Joints_HingeJoint):
|
|
13420
13420
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
13421
13421
|
|
13422
13422
|
"""
|
13423
|
-
return _RoboticsSwig.
|
13423
|
+
return _RoboticsSwig.Robotics_Joints_TorqueHingeJoint_callDynamic(self, key, args)
|
13424
13424
|
|
13425
13425
|
def extractObjectFieldsTo(self, output):
|
13426
13426
|
r"""
|
13427
|
-
extractObjectFieldsTo(
|
13427
|
+
extractObjectFieldsTo(Robotics_Joints_TorqueHingeJoint self, ObjectVector output)
|
13428
13428
|
|
13429
13429
|
Parameters
|
13430
13430
|
----------
|
13431
13431
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
13432
13432
|
|
13433
13433
|
"""
|
13434
|
-
return _RoboticsSwig.
|
13434
|
+
return _RoboticsSwig.Robotics_Joints_TorqueHingeJoint_extractObjectFieldsTo(self, output)
|
13435
13435
|
|
13436
13436
|
def extractEntriesTo(self, output):
|
13437
13437
|
r"""
|
13438
|
-
extractEntriesTo(
|
13438
|
+
extractEntriesTo(Robotics_Joints_TorqueHingeJoint self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
13439
13439
|
|
13440
13440
|
Parameters
|
13441
13441
|
----------
|
13442
13442
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
13443
13443
|
|
13444
13444
|
"""
|
13445
|
-
return _RoboticsSwig.
|
13445
|
+
return _RoboticsSwig.Robotics_Joints_TorqueHingeJoint_extractEntriesTo(self, output)
|
13446
13446
|
|
13447
13447
|
def triggerOnInit(self, context):
|
13448
13448
|
r"""
|
13449
|
-
triggerOnInit(
|
13449
|
+
triggerOnInit(Robotics_Joints_TorqueHingeJoint self, openplx::RuntimeContext const & context)
|
13450
13450
|
|
13451
13451
|
Parameters
|
13452
13452
|
----------
|
13453
13453
|
context: openplx::RuntimeContext const &
|
13454
13454
|
|
13455
13455
|
"""
|
13456
|
-
return _RoboticsSwig.
|
13457
|
-
__swig_destroy__ = _RoboticsSwig.
|
13456
|
+
return _RoboticsSwig.Robotics_Joints_TorqueHingeJoint_triggerOnInit(self, context)
|
13457
|
+
__swig_destroy__ = _RoboticsSwig.delete_Robotics_Joints_TorqueHingeJoint
|
13458
13458
|
|
13459
|
-
# Register
|
13460
|
-
_RoboticsSwig.
|
13459
|
+
# Register Robotics_Joints_TorqueHingeJoint in _RoboticsSwig:
|
13460
|
+
_RoboticsSwig.Robotics_Joints_TorqueHingeJoint_swigregister(Robotics_Joints_TorqueHingeJoint)
|
13461
13461
|
|
13462
|
-
class
|
13462
|
+
class Robotics_Joints_VelocityHingeJoint(Robotics_Joints_HingeJoint):
|
13463
13463
|
r"""Proxy of C++ openplx::Robotics::Joints::VelocityHingeJoint class."""
|
13464
13464
|
|
13465
13465
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
13466
13466
|
__repr__ = _swig_repr
|
13467
13467
|
|
13468
13468
|
def __init__(self):
|
13469
|
-
r"""__init__(
|
13470
|
-
_RoboticsSwig.
|
13469
|
+
r"""__init__(Robotics_Joints_VelocityHingeJoint self) -> Robotics_Joints_VelocityHingeJoint"""
|
13470
|
+
_RoboticsSwig.Robotics_Joints_VelocityHingeJoint_swiginit(self, _RoboticsSwig.new_Robotics_Joints_VelocityHingeJoint())
|
13471
13471
|
|
13472
13472
|
def actuator(self):
|
13473
|
-
r"""actuator(
|
13474
|
-
return _RoboticsSwig.
|
13473
|
+
r"""actuator(Robotics_Joints_VelocityHingeJoint self) -> std::shared_ptr< openplx::Physics3D::Interactions::RotationalVelocityMotor >"""
|
13474
|
+
return _RoboticsSwig.Robotics_Joints_VelocityHingeJoint_actuator(self)
|
13475
13475
|
|
13476
13476
|
def setDynamic(self, key, value):
|
13477
13477
|
r"""
|
13478
|
-
setDynamic(
|
13478
|
+
setDynamic(Robotics_Joints_VelocityHingeJoint self, std::string const & key, Any value)
|
13479
13479
|
|
13480
13480
|
Parameters
|
13481
13481
|
----------
|
@@ -13483,22 +13483,22 @@ class Joints_VelocityHingeJoint(Joints_HingeJoint):
|
|
13483
13483
|
value: openplx::Core::Any &&
|
13484
13484
|
|
13485
13485
|
"""
|
13486
|
-
return _RoboticsSwig.
|
13486
|
+
return _RoboticsSwig.Robotics_Joints_VelocityHingeJoint_setDynamic(self, key, value)
|
13487
13487
|
|
13488
13488
|
def getDynamic(self, key):
|
13489
13489
|
r"""
|
13490
|
-
getDynamic(
|
13490
|
+
getDynamic(Robotics_Joints_VelocityHingeJoint self, std::string const & key) -> Any
|
13491
13491
|
|
13492
13492
|
Parameters
|
13493
13493
|
----------
|
13494
13494
|
key: std::string const &
|
13495
13495
|
|
13496
13496
|
"""
|
13497
|
-
return _RoboticsSwig.
|
13497
|
+
return _RoboticsSwig.Robotics_Joints_VelocityHingeJoint_getDynamic(self, key)
|
13498
13498
|
|
13499
13499
|
def callDynamic(self, key, args):
|
13500
13500
|
r"""
|
13501
|
-
callDynamic(
|
13501
|
+
callDynamic(Robotics_Joints_VelocityHingeJoint self, std::string const & key, AnyVector args) -> Any
|
13502
13502
|
|
13503
13503
|
Parameters
|
13504
13504
|
----------
|
@@ -13506,86 +13506,86 @@ class Joints_VelocityHingeJoint(Joints_HingeJoint):
|
|
13506
13506
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
13507
13507
|
|
13508
13508
|
"""
|
13509
|
-
return _RoboticsSwig.
|
13509
|
+
return _RoboticsSwig.Robotics_Joints_VelocityHingeJoint_callDynamic(self, key, args)
|
13510
13510
|
|
13511
13511
|
def extractObjectFieldsTo(self, output):
|
13512
13512
|
r"""
|
13513
|
-
extractObjectFieldsTo(
|
13513
|
+
extractObjectFieldsTo(Robotics_Joints_VelocityHingeJoint self, ObjectVector output)
|
13514
13514
|
|
13515
13515
|
Parameters
|
13516
13516
|
----------
|
13517
13517
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
13518
13518
|
|
13519
13519
|
"""
|
13520
|
-
return _RoboticsSwig.
|
13520
|
+
return _RoboticsSwig.Robotics_Joints_VelocityHingeJoint_extractObjectFieldsTo(self, output)
|
13521
13521
|
|
13522
13522
|
def extractEntriesTo(self, output):
|
13523
13523
|
r"""
|
13524
|
-
extractEntriesTo(
|
13524
|
+
extractEntriesTo(Robotics_Joints_VelocityHingeJoint self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
13525
13525
|
|
13526
13526
|
Parameters
|
13527
13527
|
----------
|
13528
13528
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
13529
13529
|
|
13530
13530
|
"""
|
13531
|
-
return _RoboticsSwig.
|
13531
|
+
return _RoboticsSwig.Robotics_Joints_VelocityHingeJoint_extractEntriesTo(self, output)
|
13532
13532
|
|
13533
13533
|
def triggerOnInit(self, context):
|
13534
13534
|
r"""
|
13535
|
-
triggerOnInit(
|
13535
|
+
triggerOnInit(Robotics_Joints_VelocityHingeJoint self, openplx::RuntimeContext const & context)
|
13536
13536
|
|
13537
13537
|
Parameters
|
13538
13538
|
----------
|
13539
13539
|
context: openplx::RuntimeContext const &
|
13540
13540
|
|
13541
13541
|
"""
|
13542
|
-
return _RoboticsSwig.
|
13543
|
-
__swig_destroy__ = _RoboticsSwig.
|
13542
|
+
return _RoboticsSwig.Robotics_Joints_VelocityHingeJoint_triggerOnInit(self, context)
|
13543
|
+
__swig_destroy__ = _RoboticsSwig.delete_Robotics_Joints_VelocityHingeJoint
|
13544
13544
|
|
13545
|
-
# Register
|
13546
|
-
_RoboticsSwig.
|
13545
|
+
# Register Robotics_Joints_VelocityHingeJoint in _RoboticsSwig:
|
13546
|
+
_RoboticsSwig.Robotics_Joints_VelocityHingeJoint_swigregister(Robotics_Joints_VelocityHingeJoint)
|
13547
13547
|
|
13548
|
-
class
|
13548
|
+
class Robotics_Links_LinkData(openplx.Core.Object):
|
13549
13549
|
r"""Proxy of C++ openplx::Robotics::Links::LinkData class."""
|
13550
13550
|
|
13551
13551
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
13552
13552
|
__repr__ = _swig_repr
|
13553
13553
|
|
13554
13554
|
def __init__(self):
|
13555
|
-
r"""__init__(
|
13556
|
-
_RoboticsSwig.
|
13555
|
+
r"""__init__(Robotics_Links_LinkData self) -> Robotics_Links_LinkData"""
|
13556
|
+
_RoboticsSwig.Robotics_Links_LinkData_swiginit(self, _RoboticsSwig.new_Robotics_Links_LinkData())
|
13557
13557
|
|
13558
13558
|
def inertia(self):
|
13559
|
-
r"""inertia(
|
13560
|
-
return _RoboticsSwig.
|
13559
|
+
r"""inertia(Robotics_Links_LinkData self) -> std::shared_ptr< openplx::Physics3D::Bodies::Inertia >"""
|
13560
|
+
return _RoboticsSwig.Robotics_Links_LinkData_inertia(self)
|
13561
13561
|
|
13562
13562
|
def start_position(self):
|
13563
|
-
r"""start_position(
|
13564
|
-
return _RoboticsSwig.
|
13563
|
+
r"""start_position(Robotics_Links_LinkData self) -> std::shared_ptr< openplx::Math::Vec3 >"""
|
13564
|
+
return _RoboticsSwig.Robotics_Links_LinkData_start_position(self)
|
13565
13565
|
|
13566
13566
|
def start_main_axis(self):
|
13567
|
-
r"""start_main_axis(
|
13568
|
-
return _RoboticsSwig.
|
13567
|
+
r"""start_main_axis(Robotics_Links_LinkData self) -> std::shared_ptr< openplx::Math::Vec3 >"""
|
13568
|
+
return _RoboticsSwig.Robotics_Links_LinkData_start_main_axis(self)
|
13569
13569
|
|
13570
13570
|
def start_normal(self):
|
13571
|
-
r"""start_normal(
|
13572
|
-
return _RoboticsSwig.
|
13571
|
+
r"""start_normal(Robotics_Links_LinkData self) -> std::shared_ptr< openplx::Math::Vec3 >"""
|
13572
|
+
return _RoboticsSwig.Robotics_Links_LinkData_start_normal(self)
|
13573
13573
|
|
13574
13574
|
def end_position(self):
|
13575
|
-
r"""end_position(
|
13576
|
-
return _RoboticsSwig.
|
13575
|
+
r"""end_position(Robotics_Links_LinkData self) -> std::shared_ptr< openplx::Math::Vec3 >"""
|
13576
|
+
return _RoboticsSwig.Robotics_Links_LinkData_end_position(self)
|
13577
13577
|
|
13578
13578
|
def end_main_axis(self):
|
13579
|
-
r"""end_main_axis(
|
13580
|
-
return _RoboticsSwig.
|
13579
|
+
r"""end_main_axis(Robotics_Links_LinkData self) -> std::shared_ptr< openplx::Math::Vec3 >"""
|
13580
|
+
return _RoboticsSwig.Robotics_Links_LinkData_end_main_axis(self)
|
13581
13581
|
|
13582
13582
|
def end_normal(self):
|
13583
|
-
r"""end_normal(
|
13584
|
-
return _RoboticsSwig.
|
13583
|
+
r"""end_normal(Robotics_Links_LinkData self) -> std::shared_ptr< openplx::Math::Vec3 >"""
|
13584
|
+
return _RoboticsSwig.Robotics_Links_LinkData_end_normal(self)
|
13585
13585
|
|
13586
13586
|
def setDynamic(self, key, value):
|
13587
13587
|
r"""
|
13588
|
-
setDynamic(
|
13588
|
+
setDynamic(Robotics_Links_LinkData self, std::string const & key, Any value)
|
13589
13589
|
|
13590
13590
|
Parameters
|
13591
13591
|
----------
|
@@ -13593,22 +13593,22 @@ class Links_LinkData(openplx.Core.Object):
|
|
13593
13593
|
value: openplx::Core::Any &&
|
13594
13594
|
|
13595
13595
|
"""
|
13596
|
-
return _RoboticsSwig.
|
13596
|
+
return _RoboticsSwig.Robotics_Links_LinkData_setDynamic(self, key, value)
|
13597
13597
|
|
13598
13598
|
def getDynamic(self, key):
|
13599
13599
|
r"""
|
13600
|
-
getDynamic(
|
13600
|
+
getDynamic(Robotics_Links_LinkData self, std::string const & key) -> Any
|
13601
13601
|
|
13602
13602
|
Parameters
|
13603
13603
|
----------
|
13604
13604
|
key: std::string const &
|
13605
13605
|
|
13606
13606
|
"""
|
13607
|
-
return _RoboticsSwig.
|
13607
|
+
return _RoboticsSwig.Robotics_Links_LinkData_getDynamic(self, key)
|
13608
13608
|
|
13609
13609
|
def callDynamic(self, key, args):
|
13610
13610
|
r"""
|
13611
|
-
callDynamic(
|
13611
|
+
callDynamic(Robotics_Links_LinkData self, std::string const & key, AnyVector args) -> Any
|
13612
13612
|
|
13613
13613
|
Parameters
|
13614
13614
|
----------
|
@@ -13616,70 +13616,70 @@ class Links_LinkData(openplx.Core.Object):
|
|
13616
13616
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
13617
13617
|
|
13618
13618
|
"""
|
13619
|
-
return _RoboticsSwig.
|
13619
|
+
return _RoboticsSwig.Robotics_Links_LinkData_callDynamic(self, key, args)
|
13620
13620
|
|
13621
13621
|
def extractObjectFieldsTo(self, output):
|
13622
13622
|
r"""
|
13623
|
-
extractObjectFieldsTo(
|
13623
|
+
extractObjectFieldsTo(Robotics_Links_LinkData self, ObjectVector output)
|
13624
13624
|
|
13625
13625
|
Parameters
|
13626
13626
|
----------
|
13627
13627
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
13628
13628
|
|
13629
13629
|
"""
|
13630
|
-
return _RoboticsSwig.
|
13630
|
+
return _RoboticsSwig.Robotics_Links_LinkData_extractObjectFieldsTo(self, output)
|
13631
13631
|
|
13632
13632
|
def extractEntriesTo(self, output):
|
13633
13633
|
r"""
|
13634
|
-
extractEntriesTo(
|
13634
|
+
extractEntriesTo(Robotics_Links_LinkData self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
13635
13635
|
|
13636
13636
|
Parameters
|
13637
13637
|
----------
|
13638
13638
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
13639
13639
|
|
13640
13640
|
"""
|
13641
|
-
return _RoboticsSwig.
|
13641
|
+
return _RoboticsSwig.Robotics_Links_LinkData_extractEntriesTo(self, output)
|
13642
13642
|
|
13643
13643
|
def triggerOnInit(self, context):
|
13644
13644
|
r"""
|
13645
|
-
triggerOnInit(
|
13645
|
+
triggerOnInit(Robotics_Links_LinkData self, openplx::RuntimeContext const & context)
|
13646
13646
|
|
13647
13647
|
Parameters
|
13648
13648
|
----------
|
13649
13649
|
context: openplx::RuntimeContext const &
|
13650
13650
|
|
13651
13651
|
"""
|
13652
|
-
return _RoboticsSwig.
|
13653
|
-
__swig_destroy__ = _RoboticsSwig.
|
13652
|
+
return _RoboticsSwig.Robotics_Links_LinkData_triggerOnInit(self, context)
|
13653
|
+
__swig_destroy__ = _RoboticsSwig.delete_Robotics_Links_LinkData
|
13654
13654
|
|
13655
|
-
# Register
|
13656
|
-
_RoboticsSwig.
|
13655
|
+
# Register Robotics_Links_LinkData in _RoboticsSwig:
|
13656
|
+
_RoboticsSwig.Robotics_Links_LinkData_swigregister(Robotics_Links_LinkData)
|
13657
13657
|
|
13658
|
-
class
|
13658
|
+
class Robotics_Links_RigidLink(openplx.Physics3D.Physics3D_Bodies_RigidBody):
|
13659
13659
|
r"""Proxy of C++ openplx::Robotics::Links::RigidLink class."""
|
13660
13660
|
|
13661
13661
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
13662
13662
|
__repr__ = _swig_repr
|
13663
13663
|
|
13664
13664
|
def __init__(self):
|
13665
|
-
r"""__init__(
|
13666
|
-
_RoboticsSwig.
|
13665
|
+
r"""__init__(Robotics_Links_RigidLink self) -> Robotics_Links_RigidLink"""
|
13666
|
+
_RoboticsSwig.Robotics_Links_RigidLink_swiginit(self, _RoboticsSwig.new_Robotics_Links_RigidLink())
|
13667
13667
|
|
13668
13668
|
def start(self):
|
13669
|
-
r"""start(
|
13670
|
-
return _RoboticsSwig.
|
13669
|
+
r"""start(Robotics_Links_RigidLink self) -> std::shared_ptr< openplx::Physics3D::Charges::MateConnector >"""
|
13670
|
+
return _RoboticsSwig.Robotics_Links_RigidLink_start(self)
|
13671
13671
|
|
13672
13672
|
def end(self):
|
13673
|
-
r"""end(
|
13674
|
-
return _RoboticsSwig.
|
13673
|
+
r"""end(Robotics_Links_RigidLink self) -> std::shared_ptr< openplx::Physics3D::Charges::MateConnector >"""
|
13674
|
+
return _RoboticsSwig.Robotics_Links_RigidLink_end(self)
|
13675
13675
|
|
13676
13676
|
def contact_geometry(self):
|
13677
|
-
r"""contact_geometry(
|
13678
|
-
return _RoboticsSwig.
|
13677
|
+
r"""contact_geometry(Robotics_Links_RigidLink self) -> std::shared_ptr< openplx::Physics3D::Charges::ContactGeometry >"""
|
13678
|
+
return _RoboticsSwig.Robotics_Links_RigidLink_contact_geometry(self)
|
13679
13679
|
|
13680
13680
|
def setDynamic(self, key, value):
|
13681
13681
|
r"""
|
13682
|
-
setDynamic(
|
13682
|
+
setDynamic(Robotics_Links_RigidLink self, std::string const & key, Any value)
|
13683
13683
|
|
13684
13684
|
Parameters
|
13685
13685
|
----------
|
@@ -13687,22 +13687,22 @@ class Links_RigidLink(openplx.Physics3D.Bodies_RigidBody):
|
|
13687
13687
|
value: openplx::Core::Any &&
|
13688
13688
|
|
13689
13689
|
"""
|
13690
|
-
return _RoboticsSwig.
|
13690
|
+
return _RoboticsSwig.Robotics_Links_RigidLink_setDynamic(self, key, value)
|
13691
13691
|
|
13692
13692
|
def getDynamic(self, key):
|
13693
13693
|
r"""
|
13694
|
-
getDynamic(
|
13694
|
+
getDynamic(Robotics_Links_RigidLink self, std::string const & key) -> Any
|
13695
13695
|
|
13696
13696
|
Parameters
|
13697
13697
|
----------
|
13698
13698
|
key: std::string const &
|
13699
13699
|
|
13700
13700
|
"""
|
13701
|
-
return _RoboticsSwig.
|
13701
|
+
return _RoboticsSwig.Robotics_Links_RigidLink_getDynamic(self, key)
|
13702
13702
|
|
13703
13703
|
def callDynamic(self, key, args):
|
13704
13704
|
r"""
|
13705
|
-
callDynamic(
|
13705
|
+
callDynamic(Robotics_Links_RigidLink self, std::string const & key, AnyVector args) -> Any
|
13706
13706
|
|
13707
13707
|
Parameters
|
13708
13708
|
----------
|
@@ -13710,66 +13710,66 @@ class Links_RigidLink(openplx.Physics3D.Bodies_RigidBody):
|
|
13710
13710
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
13711
13711
|
|
13712
13712
|
"""
|
13713
|
-
return _RoboticsSwig.
|
13713
|
+
return _RoboticsSwig.Robotics_Links_RigidLink_callDynamic(self, key, args)
|
13714
13714
|
|
13715
13715
|
def extractObjectFieldsTo(self, output):
|
13716
13716
|
r"""
|
13717
|
-
extractObjectFieldsTo(
|
13717
|
+
extractObjectFieldsTo(Robotics_Links_RigidLink self, ObjectVector output)
|
13718
13718
|
|
13719
13719
|
Parameters
|
13720
13720
|
----------
|
13721
13721
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
13722
13722
|
|
13723
13723
|
"""
|
13724
|
-
return _RoboticsSwig.
|
13724
|
+
return _RoboticsSwig.Robotics_Links_RigidLink_extractObjectFieldsTo(self, output)
|
13725
13725
|
|
13726
13726
|
def extractEntriesTo(self, output):
|
13727
13727
|
r"""
|
13728
|
-
extractEntriesTo(
|
13728
|
+
extractEntriesTo(Robotics_Links_RigidLink self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
13729
13729
|
|
13730
13730
|
Parameters
|
13731
13731
|
----------
|
13732
13732
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
13733
13733
|
|
13734
13734
|
"""
|
13735
|
-
return _RoboticsSwig.
|
13735
|
+
return _RoboticsSwig.Robotics_Links_RigidLink_extractEntriesTo(self, output)
|
13736
13736
|
|
13737
13737
|
def triggerOnInit(self, context):
|
13738
13738
|
r"""
|
13739
|
-
triggerOnInit(
|
13739
|
+
triggerOnInit(Robotics_Links_RigidLink self, openplx::RuntimeContext const & context)
|
13740
13740
|
|
13741
13741
|
Parameters
|
13742
13742
|
----------
|
13743
13743
|
context: openplx::RuntimeContext const &
|
13744
13744
|
|
13745
13745
|
"""
|
13746
|
-
return _RoboticsSwig.
|
13747
|
-
__swig_destroy__ = _RoboticsSwig.
|
13746
|
+
return _RoboticsSwig.Robotics_Links_RigidLink_triggerOnInit(self, context)
|
13747
|
+
__swig_destroy__ = _RoboticsSwig.delete_Robotics_Links_RigidLink
|
13748
13748
|
|
13749
|
-
# Register
|
13750
|
-
_RoboticsSwig.
|
13749
|
+
# Register Robotics_Links_RigidLink in _RoboticsSwig:
|
13750
|
+
_RoboticsSwig.Robotics_Links_RigidLink_swigregister(Robotics_Links_RigidLink)
|
13751
13751
|
|
13752
|
-
class
|
13752
|
+
class Robotics_Links_RigidBoxLink(Robotics_Links_RigidLink):
|
13753
13753
|
r"""Proxy of C++ openplx::Robotics::Links::RigidBoxLink class."""
|
13754
13754
|
|
13755
13755
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
13756
13756
|
__repr__ = _swig_repr
|
13757
13757
|
|
13758
13758
|
def __init__(self):
|
13759
|
-
r"""__init__(
|
13760
|
-
_RoboticsSwig.
|
13759
|
+
r"""__init__(Robotics_Links_RigidBoxLink self) -> Robotics_Links_RigidBoxLink"""
|
13760
|
+
_RoboticsSwig.Robotics_Links_RigidBoxLink_swiginit(self, _RoboticsSwig.new_Robotics_Links_RigidBoxLink())
|
13761
13761
|
|
13762
13762
|
def geometry(self):
|
13763
|
-
r"""geometry(
|
13764
|
-
return _RoboticsSwig.
|
13763
|
+
r"""geometry(Robotics_Links_RigidBoxLink self) -> std::shared_ptr< openplx::Physics3D::Charges::Box >"""
|
13764
|
+
return _RoboticsSwig.Robotics_Links_RigidBoxLink_geometry(self)
|
13765
13765
|
|
13766
13766
|
def arrow(self):
|
13767
|
-
r"""arrow(
|
13768
|
-
return _RoboticsSwig.
|
13767
|
+
r"""arrow(Robotics_Links_RigidBoxLink self) -> std::shared_ptr< openplx::Physics3D::Charges::Box >"""
|
13768
|
+
return _RoboticsSwig.Robotics_Links_RigidBoxLink_arrow(self)
|
13769
13769
|
|
13770
13770
|
def setDynamic(self, key, value):
|
13771
13771
|
r"""
|
13772
|
-
setDynamic(
|
13772
|
+
setDynamic(Robotics_Links_RigidBoxLink self, std::string const & key, Any value)
|
13773
13773
|
|
13774
13774
|
Parameters
|
13775
13775
|
----------
|
@@ -13777,22 +13777,22 @@ class Links_RigidBoxLink(Links_RigidLink):
|
|
13777
13777
|
value: openplx::Core::Any &&
|
13778
13778
|
|
13779
13779
|
"""
|
13780
|
-
return _RoboticsSwig.
|
13780
|
+
return _RoboticsSwig.Robotics_Links_RigidBoxLink_setDynamic(self, key, value)
|
13781
13781
|
|
13782
13782
|
def getDynamic(self, key):
|
13783
13783
|
r"""
|
13784
|
-
getDynamic(
|
13784
|
+
getDynamic(Robotics_Links_RigidBoxLink self, std::string const & key) -> Any
|
13785
13785
|
|
13786
13786
|
Parameters
|
13787
13787
|
----------
|
13788
13788
|
key: std::string const &
|
13789
13789
|
|
13790
13790
|
"""
|
13791
|
-
return _RoboticsSwig.
|
13791
|
+
return _RoboticsSwig.Robotics_Links_RigidBoxLink_getDynamic(self, key)
|
13792
13792
|
|
13793
13793
|
def callDynamic(self, key, args):
|
13794
13794
|
r"""
|
13795
|
-
callDynamic(
|
13795
|
+
callDynamic(Robotics_Links_RigidBoxLink self, std::string const & key, AnyVector args) -> Any
|
13796
13796
|
|
13797
13797
|
Parameters
|
13798
13798
|
----------
|
@@ -13800,62 +13800,62 @@ class Links_RigidBoxLink(Links_RigidLink):
|
|
13800
13800
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
13801
13801
|
|
13802
13802
|
"""
|
13803
|
-
return _RoboticsSwig.
|
13803
|
+
return _RoboticsSwig.Robotics_Links_RigidBoxLink_callDynamic(self, key, args)
|
13804
13804
|
|
13805
13805
|
def extractObjectFieldsTo(self, output):
|
13806
13806
|
r"""
|
13807
|
-
extractObjectFieldsTo(
|
13807
|
+
extractObjectFieldsTo(Robotics_Links_RigidBoxLink self, ObjectVector output)
|
13808
13808
|
|
13809
13809
|
Parameters
|
13810
13810
|
----------
|
13811
13811
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
13812
13812
|
|
13813
13813
|
"""
|
13814
|
-
return _RoboticsSwig.
|
13814
|
+
return _RoboticsSwig.Robotics_Links_RigidBoxLink_extractObjectFieldsTo(self, output)
|
13815
13815
|
|
13816
13816
|
def extractEntriesTo(self, output):
|
13817
13817
|
r"""
|
13818
|
-
extractEntriesTo(
|
13818
|
+
extractEntriesTo(Robotics_Links_RigidBoxLink self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
13819
13819
|
|
13820
13820
|
Parameters
|
13821
13821
|
----------
|
13822
13822
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
13823
13823
|
|
13824
13824
|
"""
|
13825
|
-
return _RoboticsSwig.
|
13825
|
+
return _RoboticsSwig.Robotics_Links_RigidBoxLink_extractEntriesTo(self, output)
|
13826
13826
|
|
13827
13827
|
def triggerOnInit(self, context):
|
13828
13828
|
r"""
|
13829
|
-
triggerOnInit(
|
13829
|
+
triggerOnInit(Robotics_Links_RigidBoxLink self, openplx::RuntimeContext const & context)
|
13830
13830
|
|
13831
13831
|
Parameters
|
13832
13832
|
----------
|
13833
13833
|
context: openplx::RuntimeContext const &
|
13834
13834
|
|
13835
13835
|
"""
|
13836
|
-
return _RoboticsSwig.
|
13837
|
-
__swig_destroy__ = _RoboticsSwig.
|
13836
|
+
return _RoboticsSwig.Robotics_Links_RigidBoxLink_triggerOnInit(self, context)
|
13837
|
+
__swig_destroy__ = _RoboticsSwig.delete_Robotics_Links_RigidBoxLink
|
13838
13838
|
|
13839
|
-
# Register
|
13840
|
-
_RoboticsSwig.
|
13839
|
+
# Register Robotics_Links_RigidBoxLink in _RoboticsSwig:
|
13840
|
+
_RoboticsSwig.Robotics_Links_RigidBoxLink_swigregister(Robotics_Links_RigidBoxLink)
|
13841
13841
|
|
13842
|
-
class
|
13842
|
+
class Robotics_Links_RigidTriMeshLink(Robotics_Links_RigidLink):
|
13843
13843
|
r"""Proxy of C++ openplx::Robotics::Links::RigidTriMeshLink class."""
|
13844
13844
|
|
13845
13845
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
13846
13846
|
__repr__ = _swig_repr
|
13847
13847
|
|
13848
13848
|
def __init__(self):
|
13849
|
-
r"""__init__(
|
13850
|
-
_RoboticsSwig.
|
13849
|
+
r"""__init__(Robotics_Links_RigidTriMeshLink self) -> Robotics_Links_RigidTriMeshLink"""
|
13850
|
+
_RoboticsSwig.Robotics_Links_RigidTriMeshLink_swiginit(self, _RoboticsSwig.new_Robotics_Links_RigidTriMeshLink())
|
13851
13851
|
|
13852
13852
|
def contact_geometry(self):
|
13853
|
-
r"""contact_geometry(
|
13854
|
-
return _RoboticsSwig.
|
13853
|
+
r"""contact_geometry(Robotics_Links_RigidTriMeshLink self) -> std::shared_ptr< openplx::Physics3D::Charges::ExternalTriMeshGeometry >"""
|
13854
|
+
return _RoboticsSwig.Robotics_Links_RigidTriMeshLink_contact_geometry(self)
|
13855
13855
|
|
13856
13856
|
def setDynamic(self, key, value):
|
13857
13857
|
r"""
|
13858
|
-
setDynamic(
|
13858
|
+
setDynamic(Robotics_Links_RigidTriMeshLink self, std::string const & key, Any value)
|
13859
13859
|
|
13860
13860
|
Parameters
|
13861
13861
|
----------
|
@@ -13863,22 +13863,22 @@ class Links_RigidTriMeshLink(Links_RigidLink):
|
|
13863
13863
|
value: openplx::Core::Any &&
|
13864
13864
|
|
13865
13865
|
"""
|
13866
|
-
return _RoboticsSwig.
|
13866
|
+
return _RoboticsSwig.Robotics_Links_RigidTriMeshLink_setDynamic(self, key, value)
|
13867
13867
|
|
13868
13868
|
def getDynamic(self, key):
|
13869
13869
|
r"""
|
13870
|
-
getDynamic(
|
13870
|
+
getDynamic(Robotics_Links_RigidTriMeshLink self, std::string const & key) -> Any
|
13871
13871
|
|
13872
13872
|
Parameters
|
13873
13873
|
----------
|
13874
13874
|
key: std::string const &
|
13875
13875
|
|
13876
13876
|
"""
|
13877
|
-
return _RoboticsSwig.
|
13877
|
+
return _RoboticsSwig.Robotics_Links_RigidTriMeshLink_getDynamic(self, key)
|
13878
13878
|
|
13879
13879
|
def callDynamic(self, key, args):
|
13880
13880
|
r"""
|
13881
|
-
callDynamic(
|
13881
|
+
callDynamic(Robotics_Links_RigidTriMeshLink self, std::string const & key, AnyVector args) -> Any
|
13882
13882
|
|
13883
13883
|
Parameters
|
13884
13884
|
----------
|
@@ -13886,58 +13886,58 @@ class Links_RigidTriMeshLink(Links_RigidLink):
|
|
13886
13886
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
13887
13887
|
|
13888
13888
|
"""
|
13889
|
-
return _RoboticsSwig.
|
13889
|
+
return _RoboticsSwig.Robotics_Links_RigidTriMeshLink_callDynamic(self, key, args)
|
13890
13890
|
|
13891
13891
|
def extractObjectFieldsTo(self, output):
|
13892
13892
|
r"""
|
13893
|
-
extractObjectFieldsTo(
|
13893
|
+
extractObjectFieldsTo(Robotics_Links_RigidTriMeshLink self, ObjectVector output)
|
13894
13894
|
|
13895
13895
|
Parameters
|
13896
13896
|
----------
|
13897
13897
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
13898
13898
|
|
13899
13899
|
"""
|
13900
|
-
return _RoboticsSwig.
|
13900
|
+
return _RoboticsSwig.Robotics_Links_RigidTriMeshLink_extractObjectFieldsTo(self, output)
|
13901
13901
|
|
13902
13902
|
def extractEntriesTo(self, output):
|
13903
13903
|
r"""
|
13904
|
-
extractEntriesTo(
|
13904
|
+
extractEntriesTo(Robotics_Links_RigidTriMeshLink self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
13905
13905
|
|
13906
13906
|
Parameters
|
13907
13907
|
----------
|
13908
13908
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
13909
13909
|
|
13910
13910
|
"""
|
13911
|
-
return _RoboticsSwig.
|
13911
|
+
return _RoboticsSwig.Robotics_Links_RigidTriMeshLink_extractEntriesTo(self, output)
|
13912
13912
|
|
13913
13913
|
def triggerOnInit(self, context):
|
13914
13914
|
r"""
|
13915
|
-
triggerOnInit(
|
13915
|
+
triggerOnInit(Robotics_Links_RigidTriMeshLink self, openplx::RuntimeContext const & context)
|
13916
13916
|
|
13917
13917
|
Parameters
|
13918
13918
|
----------
|
13919
13919
|
context: openplx::RuntimeContext const &
|
13920
13920
|
|
13921
13921
|
"""
|
13922
|
-
return _RoboticsSwig.
|
13923
|
-
__swig_destroy__ = _RoboticsSwig.
|
13922
|
+
return _RoboticsSwig.Robotics_Links_RigidTriMeshLink_triggerOnInit(self, context)
|
13923
|
+
__swig_destroy__ = _RoboticsSwig.delete_Robotics_Links_RigidTriMeshLink
|
13924
13924
|
|
13925
|
-
# Register
|
13926
|
-
_RoboticsSwig.
|
13925
|
+
# Register Robotics_Links_RigidTriMeshLink in _RoboticsSwig:
|
13926
|
+
_RoboticsSwig.Robotics_Links_RigidTriMeshLink_swigregister(Robotics_Links_RigidTriMeshLink)
|
13927
13927
|
|
13928
|
-
class
|
13928
|
+
class Robotics_Robots_Robot(openplx.Physics3D.Physics3D_System):
|
13929
13929
|
r"""Proxy of C++ openplx::Robotics::Robots::Robot class."""
|
13930
13930
|
|
13931
13931
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
13932
13932
|
__repr__ = _swig_repr
|
13933
13933
|
|
13934
13934
|
def __init__(self):
|
13935
|
-
r"""__init__(
|
13936
|
-
_RoboticsSwig.
|
13935
|
+
r"""__init__(Robotics_Robots_Robot self) -> Robotics_Robots_Robot"""
|
13936
|
+
_RoboticsSwig.Robotics_Robots_Robot_swiginit(self, _RoboticsSwig.new_Robotics_Robots_Robot())
|
13937
13937
|
|
13938
13938
|
def setDynamic(self, key, value):
|
13939
13939
|
r"""
|
13940
|
-
setDynamic(
|
13940
|
+
setDynamic(Robotics_Robots_Robot self, std::string const & key, Any value)
|
13941
13941
|
|
13942
13942
|
Parameters
|
13943
13943
|
----------
|
@@ -13945,22 +13945,22 @@ class Robots_Robot(openplx.Physics3D.System):
|
|
13945
13945
|
value: openplx::Core::Any &&
|
13946
13946
|
|
13947
13947
|
"""
|
13948
|
-
return _RoboticsSwig.
|
13948
|
+
return _RoboticsSwig.Robotics_Robots_Robot_setDynamic(self, key, value)
|
13949
13949
|
|
13950
13950
|
def getDynamic(self, key):
|
13951
13951
|
r"""
|
13952
|
-
getDynamic(
|
13952
|
+
getDynamic(Robotics_Robots_Robot self, std::string const & key) -> Any
|
13953
13953
|
|
13954
13954
|
Parameters
|
13955
13955
|
----------
|
13956
13956
|
key: std::string const &
|
13957
13957
|
|
13958
13958
|
"""
|
13959
|
-
return _RoboticsSwig.
|
13959
|
+
return _RoboticsSwig.Robotics_Robots_Robot_getDynamic(self, key)
|
13960
13960
|
|
13961
13961
|
def callDynamic(self, key, args):
|
13962
13962
|
r"""
|
13963
|
-
callDynamic(
|
13963
|
+
callDynamic(Robotics_Robots_Robot self, std::string const & key, AnyVector args) -> Any
|
13964
13964
|
|
13965
13965
|
Parameters
|
13966
13966
|
----------
|
@@ -13968,66 +13968,66 @@ class Robots_Robot(openplx.Physics3D.System):
|
|
13968
13968
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
13969
13969
|
|
13970
13970
|
"""
|
13971
|
-
return _RoboticsSwig.
|
13971
|
+
return _RoboticsSwig.Robotics_Robots_Robot_callDynamic(self, key, args)
|
13972
13972
|
|
13973
13973
|
def extractObjectFieldsTo(self, output):
|
13974
13974
|
r"""
|
13975
|
-
extractObjectFieldsTo(
|
13975
|
+
extractObjectFieldsTo(Robotics_Robots_Robot self, ObjectVector output)
|
13976
13976
|
|
13977
13977
|
Parameters
|
13978
13978
|
----------
|
13979
13979
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
13980
13980
|
|
13981
13981
|
"""
|
13982
|
-
return _RoboticsSwig.
|
13982
|
+
return _RoboticsSwig.Robotics_Robots_Robot_extractObjectFieldsTo(self, output)
|
13983
13983
|
|
13984
13984
|
def extractEntriesTo(self, output):
|
13985
13985
|
r"""
|
13986
|
-
extractEntriesTo(
|
13986
|
+
extractEntriesTo(Robotics_Robots_Robot self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
13987
13987
|
|
13988
13988
|
Parameters
|
13989
13989
|
----------
|
13990
13990
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
13991
13991
|
|
13992
13992
|
"""
|
13993
|
-
return _RoboticsSwig.
|
13993
|
+
return _RoboticsSwig.Robotics_Robots_Robot_extractEntriesTo(self, output)
|
13994
13994
|
|
13995
13995
|
def triggerOnInit(self, context):
|
13996
13996
|
r"""
|
13997
|
-
triggerOnInit(
|
13997
|
+
triggerOnInit(Robotics_Robots_Robot self, openplx::RuntimeContext const & context)
|
13998
13998
|
|
13999
13999
|
Parameters
|
14000
14000
|
----------
|
14001
14001
|
context: openplx::RuntimeContext const &
|
14002
14002
|
|
14003
14003
|
"""
|
14004
|
-
return _RoboticsSwig.
|
14005
|
-
__swig_destroy__ = _RoboticsSwig.
|
14004
|
+
return _RoboticsSwig.Robotics_Robots_Robot_triggerOnInit(self, context)
|
14005
|
+
__swig_destroy__ = _RoboticsSwig.delete_Robotics_Robots_Robot
|
14006
14006
|
|
14007
|
-
# Register
|
14008
|
-
_RoboticsSwig.
|
14007
|
+
# Register Robotics_Robots_Robot in _RoboticsSwig:
|
14008
|
+
_RoboticsSwig.Robotics_Robots_Robot_swigregister(Robotics_Robots_Robot)
|
14009
14009
|
|
14010
|
-
class
|
14010
|
+
class Robotics_Robots_SerialManipulatorData(openplx.Core.Object):
|
14011
14011
|
r"""Proxy of C++ openplx::Robotics::Robots::SerialManipulatorData class."""
|
14012
14012
|
|
14013
14013
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
14014
14014
|
__repr__ = _swig_repr
|
14015
14015
|
|
14016
14016
|
def __init__(self):
|
14017
|
-
r"""__init__(
|
14018
|
-
_RoboticsSwig.
|
14017
|
+
r"""__init__(Robotics_Robots_SerialManipulatorData self) -> Robotics_Robots_SerialManipulatorData"""
|
14018
|
+
_RoboticsSwig.Robotics_Robots_SerialManipulatorData_swiginit(self, _RoboticsSwig.new_Robotics_Robots_SerialManipulatorData())
|
14019
14019
|
|
14020
14020
|
def link_data(self):
|
14021
|
-
r"""link_data(
|
14022
|
-
return _RoboticsSwig.
|
14021
|
+
r"""link_data(Robotics_Robots_SerialManipulatorData self) -> Robotics_Links_LinkData_Vector"""
|
14022
|
+
return _RoboticsSwig.Robotics_Robots_SerialManipulatorData_link_data(self)
|
14023
14023
|
|
14024
14024
|
def hinge_data(self):
|
14025
|
-
r"""hinge_data(
|
14026
|
-
return _RoboticsSwig.
|
14025
|
+
r"""hinge_data(Robotics_Robots_SerialManipulatorData self) -> Robotics_Joints_HingeJointData_Vector"""
|
14026
|
+
return _RoboticsSwig.Robotics_Robots_SerialManipulatorData_hinge_data(self)
|
14027
14027
|
|
14028
14028
|
def setDynamic(self, key, value):
|
14029
14029
|
r"""
|
14030
|
-
setDynamic(
|
14030
|
+
setDynamic(Robotics_Robots_SerialManipulatorData self, std::string const & key, Any value)
|
14031
14031
|
|
14032
14032
|
Parameters
|
14033
14033
|
----------
|
@@ -14035,22 +14035,22 @@ class Robots_SerialManipulatorData(openplx.Core.Object):
|
|
14035
14035
|
value: openplx::Core::Any &&
|
14036
14036
|
|
14037
14037
|
"""
|
14038
|
-
return _RoboticsSwig.
|
14038
|
+
return _RoboticsSwig.Robotics_Robots_SerialManipulatorData_setDynamic(self, key, value)
|
14039
14039
|
|
14040
14040
|
def getDynamic(self, key):
|
14041
14041
|
r"""
|
14042
|
-
getDynamic(
|
14042
|
+
getDynamic(Robotics_Robots_SerialManipulatorData self, std::string const & key) -> Any
|
14043
14043
|
|
14044
14044
|
Parameters
|
14045
14045
|
----------
|
14046
14046
|
key: std::string const &
|
14047
14047
|
|
14048
14048
|
"""
|
14049
|
-
return _RoboticsSwig.
|
14049
|
+
return _RoboticsSwig.Robotics_Robots_SerialManipulatorData_getDynamic(self, key)
|
14050
14050
|
|
14051
14051
|
def callDynamic(self, key, args):
|
14052
14052
|
r"""
|
14053
|
-
callDynamic(
|
14053
|
+
callDynamic(Robotics_Robots_SerialManipulatorData self, std::string const & key, AnyVector args) -> Any
|
14054
14054
|
|
14055
14055
|
Parameters
|
14056
14056
|
----------
|
@@ -14058,110 +14058,110 @@ class Robots_SerialManipulatorData(openplx.Core.Object):
|
|
14058
14058
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
14059
14059
|
|
14060
14060
|
"""
|
14061
|
-
return _RoboticsSwig.
|
14061
|
+
return _RoboticsSwig.Robotics_Robots_SerialManipulatorData_callDynamic(self, key, args)
|
14062
14062
|
|
14063
14063
|
def extractObjectFieldsTo(self, output):
|
14064
14064
|
r"""
|
14065
|
-
extractObjectFieldsTo(
|
14065
|
+
extractObjectFieldsTo(Robotics_Robots_SerialManipulatorData self, ObjectVector output)
|
14066
14066
|
|
14067
14067
|
Parameters
|
14068
14068
|
----------
|
14069
14069
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
14070
14070
|
|
14071
14071
|
"""
|
14072
|
-
return _RoboticsSwig.
|
14072
|
+
return _RoboticsSwig.Robotics_Robots_SerialManipulatorData_extractObjectFieldsTo(self, output)
|
14073
14073
|
|
14074
14074
|
def extractEntriesTo(self, output):
|
14075
14075
|
r"""
|
14076
|
-
extractEntriesTo(
|
14076
|
+
extractEntriesTo(Robotics_Robots_SerialManipulatorData self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
14077
14077
|
|
14078
14078
|
Parameters
|
14079
14079
|
----------
|
14080
14080
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
14081
14081
|
|
14082
14082
|
"""
|
14083
|
-
return _RoboticsSwig.
|
14083
|
+
return _RoboticsSwig.Robotics_Robots_SerialManipulatorData_extractEntriesTo(self, output)
|
14084
14084
|
|
14085
14085
|
def triggerOnInit(self, context):
|
14086
14086
|
r"""
|
14087
|
-
triggerOnInit(
|
14087
|
+
triggerOnInit(Robotics_Robots_SerialManipulatorData self, openplx::RuntimeContext const & context)
|
14088
14088
|
|
14089
14089
|
Parameters
|
14090
14090
|
----------
|
14091
14091
|
context: openplx::RuntimeContext const &
|
14092
14092
|
|
14093
14093
|
"""
|
14094
|
-
return _RoboticsSwig.
|
14095
|
-
__swig_destroy__ = _RoboticsSwig.
|
14094
|
+
return _RoboticsSwig.Robotics_Robots_SerialManipulatorData_triggerOnInit(self, context)
|
14095
|
+
__swig_destroy__ = _RoboticsSwig.delete_Robotics_Robots_SerialManipulatorData
|
14096
14096
|
|
14097
|
-
# Register
|
14098
|
-
_RoboticsSwig.
|
14097
|
+
# Register Robotics_Robots_SerialManipulatorData in _RoboticsSwig:
|
14098
|
+
_RoboticsSwig.Robotics_Robots_SerialManipulatorData_swigregister(Robotics_Robots_SerialManipulatorData)
|
14099
14099
|
|
14100
|
-
class
|
14100
|
+
class Robotics_Robots_SixAxisSerialManipulator(Robotics_Robots_Robot):
|
14101
14101
|
r"""Proxy of C++ openplx::Robotics::Robots::SixAxisSerialManipulator class."""
|
14102
14102
|
|
14103
14103
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
14104
14104
|
__repr__ = _swig_repr
|
14105
14105
|
|
14106
14106
|
def __init__(self):
|
14107
|
-
r"""__init__(
|
14108
|
-
_RoboticsSwig.
|
14107
|
+
r"""__init__(Robotics_Robots_SixAxisSerialManipulator self) -> Robotics_Robots_SixAxisSerialManipulator"""
|
14108
|
+
_RoboticsSwig.Robotics_Robots_SixAxisSerialManipulator_swiginit(self, _RoboticsSwig.new_Robotics_Robots_SixAxisSerialManipulator())
|
14109
14109
|
|
14110
14110
|
def data(self):
|
14111
|
-
r"""data(
|
14112
|
-
return _RoboticsSwig.
|
14111
|
+
r"""data(Robotics_Robots_SixAxisSerialManipulator self) -> std::shared_ptr< openplx::Robotics::Robots::SerialManipulatorData >"""
|
14112
|
+
return _RoboticsSwig.Robotics_Robots_SixAxisSerialManipulator_data(self)
|
14113
14113
|
|
14114
14114
|
def link1(self):
|
14115
|
-
r"""link1(
|
14116
|
-
return _RoboticsSwig.
|
14115
|
+
r"""link1(Robotics_Robots_SixAxisSerialManipulator self) -> std::shared_ptr< openplx::Robotics::Links::RigidLink >"""
|
14116
|
+
return _RoboticsSwig.Robotics_Robots_SixAxisSerialManipulator_link1(self)
|
14117
14117
|
|
14118
14118
|
def link2(self):
|
14119
|
-
r"""link2(
|
14120
|
-
return _RoboticsSwig.
|
14119
|
+
r"""link2(Robotics_Robots_SixAxisSerialManipulator self) -> std::shared_ptr< openplx::Robotics::Links::RigidLink >"""
|
14120
|
+
return _RoboticsSwig.Robotics_Robots_SixAxisSerialManipulator_link2(self)
|
14121
14121
|
|
14122
14122
|
def link3(self):
|
14123
|
-
r"""link3(
|
14124
|
-
return _RoboticsSwig.
|
14123
|
+
r"""link3(Robotics_Robots_SixAxisSerialManipulator self) -> std::shared_ptr< openplx::Robotics::Links::RigidLink >"""
|
14124
|
+
return _RoboticsSwig.Robotics_Robots_SixAxisSerialManipulator_link3(self)
|
14125
14125
|
|
14126
14126
|
def link4(self):
|
14127
|
-
r"""link4(
|
14128
|
-
return _RoboticsSwig.
|
14127
|
+
r"""link4(Robotics_Robots_SixAxisSerialManipulator self) -> std::shared_ptr< openplx::Robotics::Links::RigidLink >"""
|
14128
|
+
return _RoboticsSwig.Robotics_Robots_SixAxisSerialManipulator_link4(self)
|
14129
14129
|
|
14130
14130
|
def link5(self):
|
14131
|
-
r"""link5(
|
14132
|
-
return _RoboticsSwig.
|
14131
|
+
r"""link5(Robotics_Robots_SixAxisSerialManipulator self) -> std::shared_ptr< openplx::Robotics::Links::RigidLink >"""
|
14132
|
+
return _RoboticsSwig.Robotics_Robots_SixAxisSerialManipulator_link5(self)
|
14133
14133
|
|
14134
14134
|
def link6(self):
|
14135
|
-
r"""link6(
|
14136
|
-
return _RoboticsSwig.
|
14135
|
+
r"""link6(Robotics_Robots_SixAxisSerialManipulator self) -> std::shared_ptr< openplx::Robotics::Links::RigidLink >"""
|
14136
|
+
return _RoboticsSwig.Robotics_Robots_SixAxisSerialManipulator_link6(self)
|
14137
14137
|
|
14138
14138
|
def joint1(self):
|
14139
|
-
r"""joint1(
|
14140
|
-
return _RoboticsSwig.
|
14139
|
+
r"""joint1(Robotics_Robots_SixAxisSerialManipulator self) -> std::shared_ptr< openplx::Robotics::Joints::HingeJoint >"""
|
14140
|
+
return _RoboticsSwig.Robotics_Robots_SixAxisSerialManipulator_joint1(self)
|
14141
14141
|
|
14142
14142
|
def joint2(self):
|
14143
|
-
r"""joint2(
|
14144
|
-
return _RoboticsSwig.
|
14143
|
+
r"""joint2(Robotics_Robots_SixAxisSerialManipulator self) -> std::shared_ptr< openplx::Robotics::Joints::HingeJoint >"""
|
14144
|
+
return _RoboticsSwig.Robotics_Robots_SixAxisSerialManipulator_joint2(self)
|
14145
14145
|
|
14146
14146
|
def joint3(self):
|
14147
|
-
r"""joint3(
|
14148
|
-
return _RoboticsSwig.
|
14147
|
+
r"""joint3(Robotics_Robots_SixAxisSerialManipulator self) -> std::shared_ptr< openplx::Robotics::Joints::HingeJoint >"""
|
14148
|
+
return _RoboticsSwig.Robotics_Robots_SixAxisSerialManipulator_joint3(self)
|
14149
14149
|
|
14150
14150
|
def joint4(self):
|
14151
|
-
r"""joint4(
|
14152
|
-
return _RoboticsSwig.
|
14151
|
+
r"""joint4(Robotics_Robots_SixAxisSerialManipulator self) -> std::shared_ptr< openplx::Robotics::Joints::HingeJoint >"""
|
14152
|
+
return _RoboticsSwig.Robotics_Robots_SixAxisSerialManipulator_joint4(self)
|
14153
14153
|
|
14154
14154
|
def joint5(self):
|
14155
|
-
r"""joint5(
|
14156
|
-
return _RoboticsSwig.
|
14155
|
+
r"""joint5(Robotics_Robots_SixAxisSerialManipulator self) -> std::shared_ptr< openplx::Robotics::Joints::HingeJoint >"""
|
14156
|
+
return _RoboticsSwig.Robotics_Robots_SixAxisSerialManipulator_joint5(self)
|
14157
14157
|
|
14158
14158
|
def joint6(self):
|
14159
|
-
r"""joint6(
|
14160
|
-
return _RoboticsSwig.
|
14159
|
+
r"""joint6(Robotics_Robots_SixAxisSerialManipulator self) -> std::shared_ptr< openplx::Robotics::Joints::HingeJoint >"""
|
14160
|
+
return _RoboticsSwig.Robotics_Robots_SixAxisSerialManipulator_joint6(self)
|
14161
14161
|
|
14162
14162
|
def setDynamic(self, key, value):
|
14163
14163
|
r"""
|
14164
|
-
setDynamic(
|
14164
|
+
setDynamic(Robotics_Robots_SixAxisSerialManipulator self, std::string const & key, Any value)
|
14165
14165
|
|
14166
14166
|
Parameters
|
14167
14167
|
----------
|
@@ -14169,22 +14169,22 @@ class Robots_SixAxisSerialManipulator(Robots_Robot):
|
|
14169
14169
|
value: openplx::Core::Any &&
|
14170
14170
|
|
14171
14171
|
"""
|
14172
|
-
return _RoboticsSwig.
|
14172
|
+
return _RoboticsSwig.Robotics_Robots_SixAxisSerialManipulator_setDynamic(self, key, value)
|
14173
14173
|
|
14174
14174
|
def getDynamic(self, key):
|
14175
14175
|
r"""
|
14176
|
-
getDynamic(
|
14176
|
+
getDynamic(Robotics_Robots_SixAxisSerialManipulator self, std::string const & key) -> Any
|
14177
14177
|
|
14178
14178
|
Parameters
|
14179
14179
|
----------
|
14180
14180
|
key: std::string const &
|
14181
14181
|
|
14182
14182
|
"""
|
14183
|
-
return _RoboticsSwig.
|
14183
|
+
return _RoboticsSwig.Robotics_Robots_SixAxisSerialManipulator_getDynamic(self, key)
|
14184
14184
|
|
14185
14185
|
def callDynamic(self, key, args):
|
14186
14186
|
r"""
|
14187
|
-
callDynamic(
|
14187
|
+
callDynamic(Robotics_Robots_SixAxisSerialManipulator self, std::string const & key, AnyVector args) -> Any
|
14188
14188
|
|
14189
14189
|
Parameters
|
14190
14190
|
----------
|
@@ -14192,73 +14192,73 @@ class Robots_SixAxisSerialManipulator(Robots_Robot):
|
|
14192
14192
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
14193
14193
|
|
14194
14194
|
"""
|
14195
|
-
return _RoboticsSwig.
|
14195
|
+
return _RoboticsSwig.Robotics_Robots_SixAxisSerialManipulator_callDynamic(self, key, args)
|
14196
14196
|
|
14197
14197
|
def extractObjectFieldsTo(self, output):
|
14198
14198
|
r"""
|
14199
|
-
extractObjectFieldsTo(
|
14199
|
+
extractObjectFieldsTo(Robotics_Robots_SixAxisSerialManipulator self, ObjectVector output)
|
14200
14200
|
|
14201
14201
|
Parameters
|
14202
14202
|
----------
|
14203
14203
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
14204
14204
|
|
14205
14205
|
"""
|
14206
|
-
return _RoboticsSwig.
|
14206
|
+
return _RoboticsSwig.Robotics_Robots_SixAxisSerialManipulator_extractObjectFieldsTo(self, output)
|
14207
14207
|
|
14208
14208
|
def extractEntriesTo(self, output):
|
14209
14209
|
r"""
|
14210
|
-
extractEntriesTo(
|
14210
|
+
extractEntriesTo(Robotics_Robots_SixAxisSerialManipulator self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
14211
14211
|
|
14212
14212
|
Parameters
|
14213
14213
|
----------
|
14214
14214
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
14215
14215
|
|
14216
14216
|
"""
|
14217
|
-
return _RoboticsSwig.
|
14217
|
+
return _RoboticsSwig.Robotics_Robots_SixAxisSerialManipulator_extractEntriesTo(self, output)
|
14218
14218
|
|
14219
14219
|
def triggerOnInit(self, context):
|
14220
14220
|
r"""
|
14221
|
-
triggerOnInit(
|
14221
|
+
triggerOnInit(Robotics_Robots_SixAxisSerialManipulator self, openplx::RuntimeContext const & context)
|
14222
14222
|
|
14223
14223
|
Parameters
|
14224
14224
|
----------
|
14225
14225
|
context: openplx::RuntimeContext const &
|
14226
14226
|
|
14227
14227
|
"""
|
14228
|
-
return _RoboticsSwig.
|
14229
|
-
__swig_destroy__ = _RoboticsSwig.
|
14228
|
+
return _RoboticsSwig.Robotics_Robots_SixAxisSerialManipulator_triggerOnInit(self, context)
|
14229
|
+
__swig_destroy__ = _RoboticsSwig.delete_Robotics_Robots_SixAxisSerialManipulator
|
14230
14230
|
|
14231
|
-
# Register
|
14232
|
-
_RoboticsSwig.
|
14231
|
+
# Register Robotics_Robots_SixAxisSerialManipulator in _RoboticsSwig:
|
14232
|
+
_RoboticsSwig.Robotics_Robots_SixAxisSerialManipulator_swigregister(Robotics_Robots_SixAxisSerialManipulator)
|
14233
14233
|
|
14234
|
-
class
|
14234
|
+
class Robotics_Signals_RobotInput(openplx.Physics.Physics_Signals_Input):
|
14235
14235
|
r"""Proxy of C++ openplx::Robotics::Signals::RobotInput class."""
|
14236
14236
|
|
14237
14237
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
14238
14238
|
__repr__ = _swig_repr
|
14239
14239
|
|
14240
14240
|
def __init__(self):
|
14241
|
-
r"""__init__(
|
14242
|
-
_RoboticsSwig.
|
14241
|
+
r"""__init__(Robotics_Signals_RobotInput self) -> Robotics_Signals_RobotInput"""
|
14242
|
+
_RoboticsSwig.Robotics_Signals_RobotInput_swiginit(self, _RoboticsSwig.new_Robotics_Signals_RobotInput())
|
14243
14243
|
|
14244
14244
|
def targets(self):
|
14245
|
-
r"""targets(
|
14246
|
-
return _RoboticsSwig.
|
14245
|
+
r"""targets(Robotics_Signals_RobotInput self) -> Physics_Signals_Input_Vector"""
|
14246
|
+
return _RoboticsSwig.Robotics_Signals_RobotInput_targets(self)
|
14247
14247
|
|
14248
14248
|
def process(self, signal):
|
14249
14249
|
r"""
|
14250
|
-
process(
|
14250
|
+
process(Robotics_Signals_RobotInput self, std::shared_ptr< openplx::Physics::Signals::InputSignal > signal) -> Physics_Signals_InputSignal_Vector
|
14251
14251
|
|
14252
14252
|
Parameters
|
14253
14253
|
----------
|
14254
14254
|
signal: std::shared_ptr< openplx::Physics::Signals::InputSignal >
|
14255
14255
|
|
14256
14256
|
"""
|
14257
|
-
return _RoboticsSwig.
|
14257
|
+
return _RoboticsSwig.Robotics_Signals_RobotInput_process(self, signal)
|
14258
14258
|
|
14259
14259
|
def setDynamic(self, key, value):
|
14260
14260
|
r"""
|
14261
|
-
setDynamic(
|
14261
|
+
setDynamic(Robotics_Signals_RobotInput self, std::string const & key, Any value)
|
14262
14262
|
|
14263
14263
|
Parameters
|
14264
14264
|
----------
|
@@ -14266,22 +14266,22 @@ class Signals_RobotInput(openplx.Physics.Signals_Input):
|
|
14266
14266
|
value: openplx::Core::Any &&
|
14267
14267
|
|
14268
14268
|
"""
|
14269
|
-
return _RoboticsSwig.
|
14269
|
+
return _RoboticsSwig.Robotics_Signals_RobotInput_setDynamic(self, key, value)
|
14270
14270
|
|
14271
14271
|
def getDynamic(self, key):
|
14272
14272
|
r"""
|
14273
|
-
getDynamic(
|
14273
|
+
getDynamic(Robotics_Signals_RobotInput self, std::string const & key) -> Any
|
14274
14274
|
|
14275
14275
|
Parameters
|
14276
14276
|
----------
|
14277
14277
|
key: std::string const &
|
14278
14278
|
|
14279
14279
|
"""
|
14280
|
-
return _RoboticsSwig.
|
14280
|
+
return _RoboticsSwig.Robotics_Signals_RobotInput_getDynamic(self, key)
|
14281
14281
|
|
14282
14282
|
def callDynamic(self, key, args):
|
14283
14283
|
r"""
|
14284
|
-
callDynamic(
|
14284
|
+
callDynamic(Robotics_Signals_RobotInput self, std::string const & key, AnyVector args) -> Any
|
14285
14285
|
|
14286
14286
|
Parameters
|
14287
14287
|
----------
|
@@ -14289,62 +14289,62 @@ class Signals_RobotInput(openplx.Physics.Signals_Input):
|
|
14289
14289
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
14290
14290
|
|
14291
14291
|
"""
|
14292
|
-
return _RoboticsSwig.
|
14292
|
+
return _RoboticsSwig.Robotics_Signals_RobotInput_callDynamic(self, key, args)
|
14293
14293
|
|
14294
14294
|
def extractObjectFieldsTo(self, output):
|
14295
14295
|
r"""
|
14296
|
-
extractObjectFieldsTo(
|
14296
|
+
extractObjectFieldsTo(Robotics_Signals_RobotInput self, ObjectVector output)
|
14297
14297
|
|
14298
14298
|
Parameters
|
14299
14299
|
----------
|
14300
14300
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
14301
14301
|
|
14302
14302
|
"""
|
14303
|
-
return _RoboticsSwig.
|
14303
|
+
return _RoboticsSwig.Robotics_Signals_RobotInput_extractObjectFieldsTo(self, output)
|
14304
14304
|
|
14305
14305
|
def extractEntriesTo(self, output):
|
14306
14306
|
r"""
|
14307
|
-
extractEntriesTo(
|
14307
|
+
extractEntriesTo(Robotics_Signals_RobotInput self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
14308
14308
|
|
14309
14309
|
Parameters
|
14310
14310
|
----------
|
14311
14311
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
14312
14312
|
|
14313
14313
|
"""
|
14314
|
-
return _RoboticsSwig.
|
14314
|
+
return _RoboticsSwig.Robotics_Signals_RobotInput_extractEntriesTo(self, output)
|
14315
14315
|
|
14316
14316
|
def triggerOnInit(self, context):
|
14317
14317
|
r"""
|
14318
|
-
triggerOnInit(
|
14318
|
+
triggerOnInit(Robotics_Signals_RobotInput self, openplx::RuntimeContext const & context)
|
14319
14319
|
|
14320
14320
|
Parameters
|
14321
14321
|
----------
|
14322
14322
|
context: openplx::RuntimeContext const &
|
14323
14323
|
|
14324
14324
|
"""
|
14325
|
-
return _RoboticsSwig.
|
14326
|
-
__swig_destroy__ = _RoboticsSwig.
|
14325
|
+
return _RoboticsSwig.Robotics_Signals_RobotInput_triggerOnInit(self, context)
|
14326
|
+
__swig_destroy__ = _RoboticsSwig.delete_Robotics_Signals_RobotInput
|
14327
14327
|
|
14328
|
-
# Register
|
14329
|
-
_RoboticsSwig.
|
14328
|
+
# Register Robotics_Signals_RobotInput in _RoboticsSwig:
|
14329
|
+
_RoboticsSwig.Robotics_Signals_RobotInput_swigregister(Robotics_Signals_RobotInput)
|
14330
14330
|
|
14331
|
-
class
|
14331
|
+
class Robotics_Signals_RobotInputSignal(openplx.Physics.Physics_Signals_InputSignal):
|
14332
14332
|
r"""Proxy of C++ openplx::Robotics::Signals::RobotInputSignal class."""
|
14333
14333
|
|
14334
14334
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
14335
14335
|
__repr__ = _swig_repr
|
14336
14336
|
|
14337
14337
|
def __init__(self):
|
14338
|
-
r"""__init__(
|
14339
|
-
_RoboticsSwig.
|
14338
|
+
r"""__init__(Robotics_Signals_RobotInputSignal self) -> Robotics_Signals_RobotInputSignal"""
|
14339
|
+
_RoboticsSwig.Robotics_Signals_RobotInputSignal_swiginit(self, _RoboticsSwig.new_Robotics_Signals_RobotInputSignal())
|
14340
14340
|
|
14341
14341
|
def values(self):
|
14342
|
-
r"""values(
|
14343
|
-
return _RoboticsSwig.
|
14342
|
+
r"""values(Robotics_Signals_RobotInputSignal self) -> Physics_Signals_RealValue_Vector"""
|
14343
|
+
return _RoboticsSwig.Robotics_Signals_RobotInputSignal_values(self)
|
14344
14344
|
|
14345
14345
|
def control_events(self):
|
14346
|
-
r"""control_events(
|
14347
|
-
return _RoboticsSwig.
|
14346
|
+
r"""control_events(Robotics_Signals_RobotInputSignal self) -> BoolVector"""
|
14347
|
+
return _RoboticsSwig.Robotics_Signals_RobotInputSignal_control_events(self)
|
14348
14348
|
|
14349
14349
|
@staticmethod
|
14350
14350
|
def create(values, control_events, target):
|
@@ -14358,7 +14358,7 @@ class Signals_RobotInputSignal(openplx.Physics.Signals_InputSignal):
|
|
14358
14358
|
target: std::shared_ptr< openplx::Physics::Signals::Input >
|
14359
14359
|
|
14360
14360
|
"""
|
14361
|
-
return _RoboticsSwig.
|
14361
|
+
return _RoboticsSwig.Robotics_Signals_RobotInputSignal_create(values, control_events, target)
|
14362
14362
|
|
14363
14363
|
@staticmethod
|
14364
14364
|
def from_values(values, control_events, target):
|
@@ -14372,11 +14372,11 @@ class Signals_RobotInputSignal(openplx.Physics.Signals_InputSignal):
|
|
14372
14372
|
target: std::shared_ptr< openplx::Physics::Signals::Input >
|
14373
14373
|
|
14374
14374
|
"""
|
14375
|
-
return _RoboticsSwig.
|
14375
|
+
return _RoboticsSwig.Robotics_Signals_RobotInputSignal_from_values(values, control_events, target)
|
14376
14376
|
|
14377
14377
|
def setDynamic(self, key, value):
|
14378
14378
|
r"""
|
14379
|
-
setDynamic(
|
14379
|
+
setDynamic(Robotics_Signals_RobotInputSignal self, std::string const & key, Any value)
|
14380
14380
|
|
14381
14381
|
Parameters
|
14382
14382
|
----------
|
@@ -14384,22 +14384,22 @@ class Signals_RobotInputSignal(openplx.Physics.Signals_InputSignal):
|
|
14384
14384
|
value: openplx::Core::Any &&
|
14385
14385
|
|
14386
14386
|
"""
|
14387
|
-
return _RoboticsSwig.
|
14387
|
+
return _RoboticsSwig.Robotics_Signals_RobotInputSignal_setDynamic(self, key, value)
|
14388
14388
|
|
14389
14389
|
def getDynamic(self, key):
|
14390
14390
|
r"""
|
14391
|
-
getDynamic(
|
14391
|
+
getDynamic(Robotics_Signals_RobotInputSignal self, std::string const & key) -> Any
|
14392
14392
|
|
14393
14393
|
Parameters
|
14394
14394
|
----------
|
14395
14395
|
key: std::string const &
|
14396
14396
|
|
14397
14397
|
"""
|
14398
|
-
return _RoboticsSwig.
|
14398
|
+
return _RoboticsSwig.Robotics_Signals_RobotInputSignal_getDynamic(self, key)
|
14399
14399
|
|
14400
14400
|
def callDynamic(self, key, args):
|
14401
14401
|
r"""
|
14402
|
-
callDynamic(
|
14402
|
+
callDynamic(Robotics_Signals_RobotInputSignal self, std::string const & key, AnyVector args) -> Any
|
14403
14403
|
|
14404
14404
|
Parameters
|
14405
14405
|
----------
|
@@ -14407,48 +14407,48 @@ class Signals_RobotInputSignal(openplx.Physics.Signals_InputSignal):
|
|
14407
14407
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
14408
14408
|
|
14409
14409
|
"""
|
14410
|
-
return _RoboticsSwig.
|
14410
|
+
return _RoboticsSwig.Robotics_Signals_RobotInputSignal_callDynamic(self, key, args)
|
14411
14411
|
|
14412
14412
|
def extractObjectFieldsTo(self, output):
|
14413
14413
|
r"""
|
14414
|
-
extractObjectFieldsTo(
|
14414
|
+
extractObjectFieldsTo(Robotics_Signals_RobotInputSignal self, ObjectVector output)
|
14415
14415
|
|
14416
14416
|
Parameters
|
14417
14417
|
----------
|
14418
14418
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
14419
14419
|
|
14420
14420
|
"""
|
14421
|
-
return _RoboticsSwig.
|
14421
|
+
return _RoboticsSwig.Robotics_Signals_RobotInputSignal_extractObjectFieldsTo(self, output)
|
14422
14422
|
|
14423
14423
|
def extractEntriesTo(self, output):
|
14424
14424
|
r"""
|
14425
|
-
extractEntriesTo(
|
14425
|
+
extractEntriesTo(Robotics_Signals_RobotInputSignal self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
14426
14426
|
|
14427
14427
|
Parameters
|
14428
14428
|
----------
|
14429
14429
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
14430
14430
|
|
14431
14431
|
"""
|
14432
|
-
return _RoboticsSwig.
|
14432
|
+
return _RoboticsSwig.Robotics_Signals_RobotInputSignal_extractEntriesTo(self, output)
|
14433
14433
|
|
14434
14434
|
def triggerOnInit(self, context):
|
14435
14435
|
r"""
|
14436
|
-
triggerOnInit(
|
14436
|
+
triggerOnInit(Robotics_Signals_RobotInputSignal self, openplx::RuntimeContext const & context)
|
14437
14437
|
|
14438
14438
|
Parameters
|
14439
14439
|
----------
|
14440
14440
|
context: openplx::RuntimeContext const &
|
14441
14441
|
|
14442
14442
|
"""
|
14443
|
-
return _RoboticsSwig.
|
14444
|
-
__swig_destroy__ = _RoboticsSwig.
|
14443
|
+
return _RoboticsSwig.Robotics_Signals_RobotInputSignal_triggerOnInit(self, context)
|
14444
|
+
__swig_destroy__ = _RoboticsSwig.delete_Robotics_Signals_RobotInputSignal
|
14445
14445
|
|
14446
|
-
# Register
|
14447
|
-
_RoboticsSwig.
|
14446
|
+
# Register Robotics_Signals_RobotInputSignal in _RoboticsSwig:
|
14447
|
+
_RoboticsSwig.Robotics_Signals_RobotInputSignal_swigregister(Robotics_Signals_RobotInputSignal)
|
14448
14448
|
|
14449
|
-
def
|
14449
|
+
def Robotics_Signals_RobotInputSignal_create(values, control_events, target):
|
14450
14450
|
r"""
|
14451
|
-
|
14451
|
+
Robotics_Signals_RobotInputSignal_create(DoubleVector values, BoolVector control_events, std::shared_ptr< openplx::Physics::Signals::Input > target) -> std::shared_ptr< openplx::Robotics::Signals::RobotInputSignal >
|
14452
14452
|
|
14453
14453
|
Parameters
|
14454
14454
|
----------
|
@@ -14457,11 +14457,11 @@ def Signals_RobotInputSignal_create(values, control_events, target):
|
|
14457
14457
|
target: std::shared_ptr< openplx::Physics::Signals::Input >
|
14458
14458
|
|
14459
14459
|
"""
|
14460
|
-
return _RoboticsSwig.
|
14460
|
+
return _RoboticsSwig.Robotics_Signals_RobotInputSignal_create(values, control_events, target)
|
14461
14461
|
|
14462
|
-
def
|
14462
|
+
def Robotics_Signals_RobotInputSignal_from_values(values, control_events, target):
|
14463
14463
|
r"""
|
14464
|
-
|
14464
|
+
Robotics_Signals_RobotInputSignal_from_values(Physics_Signals_RealValue_Vector values, BoolVector control_events, std::shared_ptr< openplx::Physics::Signals::Input > target) -> std::shared_ptr< openplx::Robotics::Signals::RobotInputSignal >
|
14465
14465
|
|
14466
14466
|
Parameters
|
14467
14467
|
----------
|
@@ -14470,33 +14470,33 @@ def Signals_RobotInputSignal_from_values(values, control_events, target):
|
|
14470
14470
|
target: std::shared_ptr< openplx::Physics::Signals::Input >
|
14471
14471
|
|
14472
14472
|
"""
|
14473
|
-
return _RoboticsSwig.
|
14473
|
+
return _RoboticsSwig.Robotics_Signals_RobotInputSignal_from_values(values, control_events, target)
|
14474
14474
|
|
14475
|
-
class
|
14475
|
+
class Robotics_Signals_RobotOutput(openplx.Physics.Physics_Signals_Output):
|
14476
14476
|
r"""Proxy of C++ openplx::Robotics::Signals::RobotOutput class."""
|
14477
14477
|
|
14478
14478
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
14479
14479
|
__repr__ = _swig_repr
|
14480
14480
|
|
14481
14481
|
def __init__(self):
|
14482
|
-
r"""__init__(
|
14483
|
-
_RoboticsSwig.
|
14482
|
+
r"""__init__(Robotics_Signals_RobotOutput self) -> Robotics_Signals_RobotOutput"""
|
14483
|
+
_RoboticsSwig.Robotics_Signals_RobotOutput_swiginit(self, _RoboticsSwig.new_Robotics_Signals_RobotOutput())
|
14484
14484
|
|
14485
14485
|
def joint_sources(self):
|
14486
|
-
r"""joint_sources(
|
14487
|
-
return _RoboticsSwig.
|
14486
|
+
r"""joint_sources(Robotics_Signals_RobotOutput self) -> Physics_Signals_Output_Vector"""
|
14487
|
+
return _RoboticsSwig.Robotics_Signals_RobotOutput_joint_sources(self)
|
14488
14488
|
|
14489
14489
|
def object_sources(self):
|
14490
|
-
r"""object_sources(
|
14491
|
-
return _RoboticsSwig.
|
14490
|
+
r"""object_sources(Robotics_Signals_RobotOutput self) -> Physics_Signals_Output_Vector"""
|
14491
|
+
return _RoboticsSwig.Robotics_Signals_RobotOutput_object_sources(self)
|
14492
14492
|
|
14493
14493
|
def sensors(self):
|
14494
|
-
r"""sensors(
|
14495
|
-
return _RoboticsSwig.
|
14494
|
+
r"""sensors(Robotics_Signals_RobotOutput self) -> Robotics_Signals_Sensor_Vector"""
|
14495
|
+
return _RoboticsSwig.Robotics_Signals_RobotOutput_sensors(self)
|
14496
14496
|
|
14497
14497
|
def process(self, output, signals):
|
14498
14498
|
r"""
|
14499
|
-
process(
|
14499
|
+
process(Robotics_Signals_RobotOutput self, std::shared_ptr< openplx::Physics::Signals::Output > output, Physics_Signals_OutputSignal_Vector signals) -> std::shared_ptr< openplx::Physics::Signals::OutputSignal >
|
14500
14500
|
|
14501
14501
|
Parameters
|
14502
14502
|
----------
|
@@ -14504,11 +14504,11 @@ class Signals_RobotOutput(openplx.Physics.Signals_Output):
|
|
14504
14504
|
signals: std::vector< std::shared_ptr< openplx::Physics::Signals::OutputSignal >,std::allocator< std::shared_ptr< openplx::Physics::Signals::OutputSignal > > >
|
14505
14505
|
|
14506
14506
|
"""
|
14507
|
-
return _RoboticsSwig.
|
14507
|
+
return _RoboticsSwig.Robotics_Signals_RobotOutput_process(self, output, signals)
|
14508
14508
|
|
14509
14509
|
def setDynamic(self, key, value):
|
14510
14510
|
r"""
|
14511
|
-
setDynamic(
|
14511
|
+
setDynamic(Robotics_Signals_RobotOutput self, std::string const & key, Any value)
|
14512
14512
|
|
14513
14513
|
Parameters
|
14514
14514
|
----------
|
@@ -14516,22 +14516,22 @@ class Signals_RobotOutput(openplx.Physics.Signals_Output):
|
|
14516
14516
|
value: openplx::Core::Any &&
|
14517
14517
|
|
14518
14518
|
"""
|
14519
|
-
return _RoboticsSwig.
|
14519
|
+
return _RoboticsSwig.Robotics_Signals_RobotOutput_setDynamic(self, key, value)
|
14520
14520
|
|
14521
14521
|
def getDynamic(self, key):
|
14522
14522
|
r"""
|
14523
|
-
getDynamic(
|
14523
|
+
getDynamic(Robotics_Signals_RobotOutput self, std::string const & key) -> Any
|
14524
14524
|
|
14525
14525
|
Parameters
|
14526
14526
|
----------
|
14527
14527
|
key: std::string const &
|
14528
14528
|
|
14529
14529
|
"""
|
14530
|
-
return _RoboticsSwig.
|
14530
|
+
return _RoboticsSwig.Robotics_Signals_RobotOutput_getDynamic(self, key)
|
14531
14531
|
|
14532
14532
|
def callDynamic(self, key, args):
|
14533
14533
|
r"""
|
14534
|
-
callDynamic(
|
14534
|
+
callDynamic(Robotics_Signals_RobotOutput self, std::string const & key, AnyVector args) -> Any
|
14535
14535
|
|
14536
14536
|
Parameters
|
14537
14537
|
----------
|
@@ -14539,74 +14539,74 @@ class Signals_RobotOutput(openplx.Physics.Signals_Output):
|
|
14539
14539
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
14540
14540
|
|
14541
14541
|
"""
|
14542
|
-
return _RoboticsSwig.
|
14542
|
+
return _RoboticsSwig.Robotics_Signals_RobotOutput_callDynamic(self, key, args)
|
14543
14543
|
|
14544
14544
|
def extractObjectFieldsTo(self, output):
|
14545
14545
|
r"""
|
14546
|
-
extractObjectFieldsTo(
|
14546
|
+
extractObjectFieldsTo(Robotics_Signals_RobotOutput self, ObjectVector output)
|
14547
14547
|
|
14548
14548
|
Parameters
|
14549
14549
|
----------
|
14550
14550
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
14551
14551
|
|
14552
14552
|
"""
|
14553
|
-
return _RoboticsSwig.
|
14553
|
+
return _RoboticsSwig.Robotics_Signals_RobotOutput_extractObjectFieldsTo(self, output)
|
14554
14554
|
|
14555
14555
|
def extractEntriesTo(self, output):
|
14556
14556
|
r"""
|
14557
|
-
extractEntriesTo(
|
14557
|
+
extractEntriesTo(Robotics_Signals_RobotOutput self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
14558
14558
|
|
14559
14559
|
Parameters
|
14560
14560
|
----------
|
14561
14561
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
14562
14562
|
|
14563
14563
|
"""
|
14564
|
-
return _RoboticsSwig.
|
14564
|
+
return _RoboticsSwig.Robotics_Signals_RobotOutput_extractEntriesTo(self, output)
|
14565
14565
|
|
14566
14566
|
def triggerOnInit(self, context):
|
14567
14567
|
r"""
|
14568
|
-
triggerOnInit(
|
14568
|
+
triggerOnInit(Robotics_Signals_RobotOutput self, openplx::RuntimeContext const & context)
|
14569
14569
|
|
14570
14570
|
Parameters
|
14571
14571
|
----------
|
14572
14572
|
context: openplx::RuntimeContext const &
|
14573
14573
|
|
14574
14574
|
"""
|
14575
|
-
return _RoboticsSwig.
|
14576
|
-
__swig_destroy__ = _RoboticsSwig.
|
14575
|
+
return _RoboticsSwig.Robotics_Signals_RobotOutput_triggerOnInit(self, context)
|
14576
|
+
__swig_destroy__ = _RoboticsSwig.delete_Robotics_Signals_RobotOutput
|
14577
14577
|
|
14578
|
-
# Register
|
14579
|
-
_RoboticsSwig.
|
14578
|
+
# Register Robotics_Signals_RobotOutput in _RoboticsSwig:
|
14579
|
+
_RoboticsSwig.Robotics_Signals_RobotOutput_swigregister(Robotics_Signals_RobotOutput)
|
14580
14580
|
|
14581
|
-
class
|
14581
|
+
class Robotics_Signals_RobotOutputSignal(openplx.Physics.Physics_Signals_OutputSignal):
|
14582
14582
|
r"""Proxy of C++ openplx::Robotics::Signals::RobotOutputSignal class."""
|
14583
14583
|
|
14584
14584
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
14585
14585
|
__repr__ = _swig_repr
|
14586
14586
|
|
14587
14587
|
def __init__(self):
|
14588
|
-
r"""__init__(
|
14589
|
-
_RoboticsSwig.
|
14588
|
+
r"""__init__(Robotics_Signals_RobotOutputSignal self) -> Robotics_Signals_RobotOutputSignal"""
|
14589
|
+
_RoboticsSwig.Robotics_Signals_RobotOutputSignal_swiginit(self, _RoboticsSwig.new_Robotics_Signals_RobotOutputSignal())
|
14590
14590
|
|
14591
14591
|
def sensor_values(self):
|
14592
|
-
r"""sensor_values(
|
14593
|
-
return _RoboticsSwig.
|
14592
|
+
r"""sensor_values(Robotics_Signals_RobotOutputSignal self) -> Robotics_Signals_SensorValues_Vector"""
|
14593
|
+
return _RoboticsSwig.Robotics_Signals_RobotOutputSignal_sensor_values(self)
|
14594
14594
|
|
14595
14595
|
def angles(self):
|
14596
|
-
r"""angles(
|
14597
|
-
return _RoboticsSwig.
|
14596
|
+
r"""angles(Robotics_Signals_RobotOutputSignal self) -> DoubleVector"""
|
14597
|
+
return _RoboticsSwig.Robotics_Signals_RobotOutputSignal_angles(self)
|
14598
14598
|
|
14599
14599
|
def angular_velocities(self):
|
14600
|
-
r"""angular_velocities(
|
14601
|
-
return _RoboticsSwig.
|
14600
|
+
r"""angular_velocities(Robotics_Signals_RobotOutputSignal self) -> DoubleVector"""
|
14601
|
+
return _RoboticsSwig.Robotics_Signals_RobotOutputSignal_angular_velocities(self)
|
14602
14602
|
|
14603
14603
|
def torques(self):
|
14604
|
-
r"""torques(
|
14605
|
-
return _RoboticsSwig.
|
14604
|
+
r"""torques(Robotics_Signals_RobotOutputSignal self) -> DoubleVector"""
|
14605
|
+
return _RoboticsSwig.Robotics_Signals_RobotOutputSignal_torques(self)
|
14606
14606
|
|
14607
14607
|
def object_values(self):
|
14608
|
-
r"""object_values(
|
14609
|
-
return _RoboticsSwig.
|
14608
|
+
r"""object_values(Robotics_Signals_RobotOutputSignal self) -> Physics_Signals_Value_Vector"""
|
14609
|
+
return _RoboticsSwig.Robotics_Signals_RobotOutputSignal_object_values(self)
|
14610
14610
|
|
14611
14611
|
@staticmethod
|
14612
14612
|
def create(source_angle_signals, source_angular_velocity_signals, source_torque_signals, object_values, sensor_values, source):
|
@@ -14623,11 +14623,11 @@ class Signals_RobotOutputSignal(openplx.Physics.Signals_OutputSignal):
|
|
14623
14623
|
source: std::shared_ptr< openplx::Physics::Signals::Output >
|
14624
14624
|
|
14625
14625
|
"""
|
14626
|
-
return _RoboticsSwig.
|
14626
|
+
return _RoboticsSwig.Robotics_Signals_RobotOutputSignal_create(source_angle_signals, source_angular_velocity_signals, source_torque_signals, object_values, sensor_values, source)
|
14627
14627
|
|
14628
14628
|
def setDynamic(self, key, value):
|
14629
14629
|
r"""
|
14630
|
-
setDynamic(
|
14630
|
+
setDynamic(Robotics_Signals_RobotOutputSignal self, std::string const & key, Any value)
|
14631
14631
|
|
14632
14632
|
Parameters
|
14633
14633
|
----------
|
@@ -14635,22 +14635,22 @@ class Signals_RobotOutputSignal(openplx.Physics.Signals_OutputSignal):
|
|
14635
14635
|
value: openplx::Core::Any &&
|
14636
14636
|
|
14637
14637
|
"""
|
14638
|
-
return _RoboticsSwig.
|
14638
|
+
return _RoboticsSwig.Robotics_Signals_RobotOutputSignal_setDynamic(self, key, value)
|
14639
14639
|
|
14640
14640
|
def getDynamic(self, key):
|
14641
14641
|
r"""
|
14642
|
-
getDynamic(
|
14642
|
+
getDynamic(Robotics_Signals_RobotOutputSignal self, std::string const & key) -> Any
|
14643
14643
|
|
14644
14644
|
Parameters
|
14645
14645
|
----------
|
14646
14646
|
key: std::string const &
|
14647
14647
|
|
14648
14648
|
"""
|
14649
|
-
return _RoboticsSwig.
|
14649
|
+
return _RoboticsSwig.Robotics_Signals_RobotOutputSignal_getDynamic(self, key)
|
14650
14650
|
|
14651
14651
|
def callDynamic(self, key, args):
|
14652
14652
|
r"""
|
14653
|
-
callDynamic(
|
14653
|
+
callDynamic(Robotics_Signals_RobotOutputSignal self, std::string const & key, AnyVector args) -> Any
|
14654
14654
|
|
14655
14655
|
Parameters
|
14656
14656
|
----------
|
@@ -14658,48 +14658,48 @@ class Signals_RobotOutputSignal(openplx.Physics.Signals_OutputSignal):
|
|
14658
14658
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
14659
14659
|
|
14660
14660
|
"""
|
14661
|
-
return _RoboticsSwig.
|
14661
|
+
return _RoboticsSwig.Robotics_Signals_RobotOutputSignal_callDynamic(self, key, args)
|
14662
14662
|
|
14663
14663
|
def extractObjectFieldsTo(self, output):
|
14664
14664
|
r"""
|
14665
|
-
extractObjectFieldsTo(
|
14665
|
+
extractObjectFieldsTo(Robotics_Signals_RobotOutputSignal self, ObjectVector output)
|
14666
14666
|
|
14667
14667
|
Parameters
|
14668
14668
|
----------
|
14669
14669
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
14670
14670
|
|
14671
14671
|
"""
|
14672
|
-
return _RoboticsSwig.
|
14672
|
+
return _RoboticsSwig.Robotics_Signals_RobotOutputSignal_extractObjectFieldsTo(self, output)
|
14673
14673
|
|
14674
14674
|
def extractEntriesTo(self, output):
|
14675
14675
|
r"""
|
14676
|
-
extractEntriesTo(
|
14676
|
+
extractEntriesTo(Robotics_Signals_RobotOutputSignal self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
14677
14677
|
|
14678
14678
|
Parameters
|
14679
14679
|
----------
|
14680
14680
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
14681
14681
|
|
14682
14682
|
"""
|
14683
|
-
return _RoboticsSwig.
|
14683
|
+
return _RoboticsSwig.Robotics_Signals_RobotOutputSignal_extractEntriesTo(self, output)
|
14684
14684
|
|
14685
14685
|
def triggerOnInit(self, context):
|
14686
14686
|
r"""
|
14687
|
-
triggerOnInit(
|
14687
|
+
triggerOnInit(Robotics_Signals_RobotOutputSignal self, openplx::RuntimeContext const & context)
|
14688
14688
|
|
14689
14689
|
Parameters
|
14690
14690
|
----------
|
14691
14691
|
context: openplx::RuntimeContext const &
|
14692
14692
|
|
14693
14693
|
"""
|
14694
|
-
return _RoboticsSwig.
|
14695
|
-
__swig_destroy__ = _RoboticsSwig.
|
14694
|
+
return _RoboticsSwig.Robotics_Signals_RobotOutputSignal_triggerOnInit(self, context)
|
14695
|
+
__swig_destroy__ = _RoboticsSwig.delete_Robotics_Signals_RobotOutputSignal
|
14696
14696
|
|
14697
|
-
# Register
|
14698
|
-
_RoboticsSwig.
|
14697
|
+
# Register Robotics_Signals_RobotOutputSignal in _RoboticsSwig:
|
14698
|
+
_RoboticsSwig.Robotics_Signals_RobotOutputSignal_swigregister(Robotics_Signals_RobotOutputSignal)
|
14699
14699
|
|
14700
|
-
def
|
14700
|
+
def Robotics_Signals_RobotOutputSignal_create(source_angle_signals, source_angular_velocity_signals, source_torque_signals, object_values, sensor_values, source):
|
14701
14701
|
r"""
|
14702
|
-
|
14702
|
+
Robotics_Signals_RobotOutputSignal_create(Physics_Signals_ValueOutputSignal_Vector source_angle_signals, Physics_Signals_ValueOutputSignal_Vector source_angular_velocity_signals, Physics_Signals_ValueOutputSignal_Vector source_torque_signals, Physics_Signals_Value_Vector object_values, Robotics_Signals_SensorValues_Vector sensor_values, std::shared_ptr< openplx::Physics::Signals::Output > source) -> std::shared_ptr< openplx::Robotics::Signals::RobotOutputSignal >
|
14703
14703
|
|
14704
14704
|
Parameters
|
14705
14705
|
----------
|
@@ -14711,29 +14711,29 @@ def Signals_RobotOutputSignal_create(source_angle_signals, source_angular_veloci
|
|
14711
14711
|
source: std::shared_ptr< openplx::Physics::Signals::Output >
|
14712
14712
|
|
14713
14713
|
"""
|
14714
|
-
return _RoboticsSwig.
|
14714
|
+
return _RoboticsSwig.Robotics_Signals_RobotOutputSignal_create(source_angle_signals, source_angular_velocity_signals, source_torque_signals, object_values, sensor_values, source)
|
14715
14715
|
|
14716
|
-
class
|
14716
|
+
class Robotics_Signals_Sensor(openplx.Core.Object):
|
14717
14717
|
r"""Proxy of C++ openplx::Robotics::Signals::Sensor class."""
|
14718
14718
|
|
14719
14719
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
14720
14720
|
__repr__ = _swig_repr
|
14721
14721
|
|
14722
14722
|
def __init__(self):
|
14723
|
-
r"""__init__(
|
14724
|
-
_RoboticsSwig.
|
14723
|
+
r"""__init__(Robotics_Signals_Sensor self) -> Robotics_Signals_Sensor"""
|
14724
|
+
_RoboticsSwig.Robotics_Signals_Sensor_swiginit(self, _RoboticsSwig.new_Robotics_Signals_Sensor())
|
14725
14725
|
|
14726
14726
|
def outputs(self):
|
14727
|
-
r"""outputs(
|
14728
|
-
return _RoboticsSwig.
|
14727
|
+
r"""outputs(Robotics_Signals_Sensor self) -> Physics_Signals_Output_Vector"""
|
14728
|
+
return _RoboticsSwig.Robotics_Signals_Sensor_outputs(self)
|
14729
14729
|
|
14730
14730
|
def reference_id(self):
|
14731
|
-
r"""reference_id(
|
14732
|
-
return _RoboticsSwig.
|
14731
|
+
r"""reference_id(Robotics_Signals_Sensor self) -> std::string"""
|
14732
|
+
return _RoboticsSwig.Robotics_Signals_Sensor_reference_id(self)
|
14733
14733
|
|
14734
14734
|
def setDynamic(self, key, value):
|
14735
14735
|
r"""
|
14736
|
-
setDynamic(
|
14736
|
+
setDynamic(Robotics_Signals_Sensor self, std::string const & key, Any value)
|
14737
14737
|
|
14738
14738
|
Parameters
|
14739
14739
|
----------
|
@@ -14741,22 +14741,22 @@ class Signals_Sensor(openplx.Core.Object):
|
|
14741
14741
|
value: openplx::Core::Any &&
|
14742
14742
|
|
14743
14743
|
"""
|
14744
|
-
return _RoboticsSwig.
|
14744
|
+
return _RoboticsSwig.Robotics_Signals_Sensor_setDynamic(self, key, value)
|
14745
14745
|
|
14746
14746
|
def getDynamic(self, key):
|
14747
14747
|
r"""
|
14748
|
-
getDynamic(
|
14748
|
+
getDynamic(Robotics_Signals_Sensor self, std::string const & key) -> Any
|
14749
14749
|
|
14750
14750
|
Parameters
|
14751
14751
|
----------
|
14752
14752
|
key: std::string const &
|
14753
14753
|
|
14754
14754
|
"""
|
14755
|
-
return _RoboticsSwig.
|
14755
|
+
return _RoboticsSwig.Robotics_Signals_Sensor_getDynamic(self, key)
|
14756
14756
|
|
14757
14757
|
def callDynamic(self, key, args):
|
14758
14758
|
r"""
|
14759
|
-
callDynamic(
|
14759
|
+
callDynamic(Robotics_Signals_Sensor self, std::string const & key, AnyVector args) -> Any
|
14760
14760
|
|
14761
14761
|
Parameters
|
14762
14762
|
----------
|
@@ -14764,62 +14764,62 @@ class Signals_Sensor(openplx.Core.Object):
|
|
14764
14764
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
14765
14765
|
|
14766
14766
|
"""
|
14767
|
-
return _RoboticsSwig.
|
14767
|
+
return _RoboticsSwig.Robotics_Signals_Sensor_callDynamic(self, key, args)
|
14768
14768
|
|
14769
14769
|
def extractObjectFieldsTo(self, output):
|
14770
14770
|
r"""
|
14771
|
-
extractObjectFieldsTo(
|
14771
|
+
extractObjectFieldsTo(Robotics_Signals_Sensor self, ObjectVector output)
|
14772
14772
|
|
14773
14773
|
Parameters
|
14774
14774
|
----------
|
14775
14775
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
14776
14776
|
|
14777
14777
|
"""
|
14778
|
-
return _RoboticsSwig.
|
14778
|
+
return _RoboticsSwig.Robotics_Signals_Sensor_extractObjectFieldsTo(self, output)
|
14779
14779
|
|
14780
14780
|
def extractEntriesTo(self, output):
|
14781
14781
|
r"""
|
14782
|
-
extractEntriesTo(
|
14782
|
+
extractEntriesTo(Robotics_Signals_Sensor self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
14783
14783
|
|
14784
14784
|
Parameters
|
14785
14785
|
----------
|
14786
14786
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
14787
14787
|
|
14788
14788
|
"""
|
14789
|
-
return _RoboticsSwig.
|
14789
|
+
return _RoboticsSwig.Robotics_Signals_Sensor_extractEntriesTo(self, output)
|
14790
14790
|
|
14791
14791
|
def triggerOnInit(self, context):
|
14792
14792
|
r"""
|
14793
|
-
triggerOnInit(
|
14793
|
+
triggerOnInit(Robotics_Signals_Sensor self, openplx::RuntimeContext const & context)
|
14794
14794
|
|
14795
14795
|
Parameters
|
14796
14796
|
----------
|
14797
14797
|
context: openplx::RuntimeContext const &
|
14798
14798
|
|
14799
14799
|
"""
|
14800
|
-
return _RoboticsSwig.
|
14801
|
-
__swig_destroy__ = _RoboticsSwig.
|
14800
|
+
return _RoboticsSwig.Robotics_Signals_Sensor_triggerOnInit(self, context)
|
14801
|
+
__swig_destroy__ = _RoboticsSwig.delete_Robotics_Signals_Sensor
|
14802
14802
|
|
14803
|
-
# Register
|
14804
|
-
_RoboticsSwig.
|
14803
|
+
# Register Robotics_Signals_Sensor in _RoboticsSwig:
|
14804
|
+
_RoboticsSwig.Robotics_Signals_Sensor_swigregister(Robotics_Signals_Sensor)
|
14805
14805
|
|
14806
|
-
class
|
14806
|
+
class Robotics_Signals_SensorValues(openplx.Core.Object):
|
14807
14807
|
r"""Proxy of C++ openplx::Robotics::Signals::SensorValues class."""
|
14808
14808
|
|
14809
14809
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
14810
14810
|
__repr__ = _swig_repr
|
14811
14811
|
|
14812
14812
|
def __init__(self):
|
14813
|
-
r"""__init__(
|
14814
|
-
_RoboticsSwig.
|
14813
|
+
r"""__init__(Robotics_Signals_SensorValues self) -> Robotics_Signals_SensorValues"""
|
14814
|
+
_RoboticsSwig.Robotics_Signals_SensorValues_swiginit(self, _RoboticsSwig.new_Robotics_Signals_SensorValues())
|
14815
14815
|
|
14816
14816
|
def name(self):
|
14817
|
-
r"""name(
|
14818
|
-
return _RoboticsSwig.
|
14817
|
+
r"""name(Robotics_Signals_SensorValues self) -> std::string"""
|
14818
|
+
return _RoboticsSwig.Robotics_Signals_SensorValues_name(self)
|
14819
14819
|
|
14820
14820
|
def values(self):
|
14821
|
-
r"""values(
|
14822
|
-
return _RoboticsSwig.
|
14821
|
+
r"""values(Robotics_Signals_SensorValues self) -> Physics_Signals_Value_Vector"""
|
14822
|
+
return _RoboticsSwig.Robotics_Signals_SensorValues_values(self)
|
14823
14823
|
|
14824
14824
|
@staticmethod
|
14825
14825
|
def create(name, values):
|
@@ -14832,11 +14832,11 @@ class Signals_SensorValues(openplx.Core.Object):
|
|
14832
14832
|
values: std::vector< std::shared_ptr< openplx::Physics::Signals::Value >,std::allocator< std::shared_ptr< openplx::Physics::Signals::Value > > >
|
14833
14833
|
|
14834
14834
|
"""
|
14835
|
-
return _RoboticsSwig.
|
14835
|
+
return _RoboticsSwig.Robotics_Signals_SensorValues_create(name, values)
|
14836
14836
|
|
14837
14837
|
def setDynamic(self, key, value):
|
14838
14838
|
r"""
|
14839
|
-
setDynamic(
|
14839
|
+
setDynamic(Robotics_Signals_SensorValues self, std::string const & key, Any value)
|
14840
14840
|
|
14841
14841
|
Parameters
|
14842
14842
|
----------
|
@@ -14844,22 +14844,22 @@ class Signals_SensorValues(openplx.Core.Object):
|
|
14844
14844
|
value: openplx::Core::Any &&
|
14845
14845
|
|
14846
14846
|
"""
|
14847
|
-
return _RoboticsSwig.
|
14847
|
+
return _RoboticsSwig.Robotics_Signals_SensorValues_setDynamic(self, key, value)
|
14848
14848
|
|
14849
14849
|
def getDynamic(self, key):
|
14850
14850
|
r"""
|
14851
|
-
getDynamic(
|
14851
|
+
getDynamic(Robotics_Signals_SensorValues self, std::string const & key) -> Any
|
14852
14852
|
|
14853
14853
|
Parameters
|
14854
14854
|
----------
|
14855
14855
|
key: std::string const &
|
14856
14856
|
|
14857
14857
|
"""
|
14858
|
-
return _RoboticsSwig.
|
14858
|
+
return _RoboticsSwig.Robotics_Signals_SensorValues_getDynamic(self, key)
|
14859
14859
|
|
14860
14860
|
def callDynamic(self, key, args):
|
14861
14861
|
r"""
|
14862
|
-
callDynamic(
|
14862
|
+
callDynamic(Robotics_Signals_SensorValues self, std::string const & key, AnyVector args) -> Any
|
14863
14863
|
|
14864
14864
|
Parameters
|
14865
14865
|
----------
|
@@ -14867,48 +14867,48 @@ class Signals_SensorValues(openplx.Core.Object):
|
|
14867
14867
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
14868
14868
|
|
14869
14869
|
"""
|
14870
|
-
return _RoboticsSwig.
|
14870
|
+
return _RoboticsSwig.Robotics_Signals_SensorValues_callDynamic(self, key, args)
|
14871
14871
|
|
14872
14872
|
def extractObjectFieldsTo(self, output):
|
14873
14873
|
r"""
|
14874
|
-
extractObjectFieldsTo(
|
14874
|
+
extractObjectFieldsTo(Robotics_Signals_SensorValues self, ObjectVector output)
|
14875
14875
|
|
14876
14876
|
Parameters
|
14877
14877
|
----------
|
14878
14878
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
14879
14879
|
|
14880
14880
|
"""
|
14881
|
-
return _RoboticsSwig.
|
14881
|
+
return _RoboticsSwig.Robotics_Signals_SensorValues_extractObjectFieldsTo(self, output)
|
14882
14882
|
|
14883
14883
|
def extractEntriesTo(self, output):
|
14884
14884
|
r"""
|
14885
|
-
extractEntriesTo(
|
14885
|
+
extractEntriesTo(Robotics_Signals_SensorValues self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
14886
14886
|
|
14887
14887
|
Parameters
|
14888
14888
|
----------
|
14889
14889
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
14890
14890
|
|
14891
14891
|
"""
|
14892
|
-
return _RoboticsSwig.
|
14892
|
+
return _RoboticsSwig.Robotics_Signals_SensorValues_extractEntriesTo(self, output)
|
14893
14893
|
|
14894
14894
|
def triggerOnInit(self, context):
|
14895
14895
|
r"""
|
14896
|
-
triggerOnInit(
|
14896
|
+
triggerOnInit(Robotics_Signals_SensorValues self, openplx::RuntimeContext const & context)
|
14897
14897
|
|
14898
14898
|
Parameters
|
14899
14899
|
----------
|
14900
14900
|
context: openplx::RuntimeContext const &
|
14901
14901
|
|
14902
14902
|
"""
|
14903
|
-
return _RoboticsSwig.
|
14904
|
-
__swig_destroy__ = _RoboticsSwig.
|
14903
|
+
return _RoboticsSwig.Robotics_Signals_SensorValues_triggerOnInit(self, context)
|
14904
|
+
__swig_destroy__ = _RoboticsSwig.delete_Robotics_Signals_SensorValues
|
14905
14905
|
|
14906
|
-
# Register
|
14907
|
-
_RoboticsSwig.
|
14906
|
+
# Register Robotics_Signals_SensorValues in _RoboticsSwig:
|
14907
|
+
_RoboticsSwig.Robotics_Signals_SensorValues_swigregister(Robotics_Signals_SensorValues)
|
14908
14908
|
|
14909
|
-
def
|
14909
|
+
def Robotics_Signals_SensorValues_create(name, values):
|
14910
14910
|
r"""
|
14911
|
-
|
14911
|
+
Robotics_Signals_SensorValues_create(std::string name, Physics_Signals_Value_Vector values) -> std::shared_ptr< openplx::Robotics::Signals::SensorValues >
|
14912
14912
|
|
14913
14913
|
Parameters
|
14914
14914
|
----------
|
@@ -14916,7 +14916,7 @@ def Signals_SensorValues_create(name, values):
|
|
14916
14916
|
values: std::vector< std::shared_ptr< openplx::Physics::Signals::Value >,std::allocator< std::shared_ptr< openplx::Physics::Signals::Value > > >
|
14917
14917
|
|
14918
14918
|
"""
|
14919
|
-
return _RoboticsSwig.
|
14919
|
+
return _RoboticsSwig.Robotics_Signals_SensorValues_create(name, values)
|
14920
14920
|
|
14921
14921
|
|
14922
14922
|
|