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/Vehicles.py
CHANGED
@@ -6951,23 +6951,23 @@ class Vehicles_Tracks_System_Vector(object):
|
|
6951
6951
|
# Register Vehicles_Tracks_System_Vector in _VehiclesSwig:
|
6952
6952
|
_VehiclesSwig.Vehicles_Tracks_System_Vector_swigregister(Vehicles_Tracks_System_Vector)
|
6953
6953
|
|
6954
|
-
class
|
6954
|
+
class Vehicles_Tracks_Belt(openplx.Core.Object):
|
6955
6955
|
r"""Proxy of C++ openplx::Vehicles::Tracks::Belt class."""
|
6956
6956
|
|
6957
6957
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
6958
6958
|
__repr__ = _swig_repr
|
6959
6959
|
|
6960
6960
|
def __init__(self):
|
6961
|
-
r"""__init__(
|
6962
|
-
_VehiclesSwig.
|
6961
|
+
r"""__init__(Vehicles_Tracks_Belt self) -> Vehicles_Tracks_Belt"""
|
6962
|
+
_VehiclesSwig.Vehicles_Tracks_Belt_swiginit(self, _VehiclesSwig.new_Vehicles_Tracks_Belt())
|
6963
6963
|
|
6964
6964
|
def link_description(self):
|
6965
|
-
r"""link_description(
|
6966
|
-
return _VehiclesSwig.
|
6965
|
+
r"""link_description(Vehicles_Tracks_Belt self) -> std::shared_ptr< openplx::Vehicles::Tracks::DefaultLinkDescription >"""
|
6966
|
+
return _VehiclesSwig.Vehicles_Tracks_Belt_link_description(self)
|
6967
6967
|
|
6968
6968
|
def setDynamic(self, key, value):
|
6969
6969
|
r"""
|
6970
|
-
setDynamic(
|
6970
|
+
setDynamic(Vehicles_Tracks_Belt self, std::string const & key, Any value)
|
6971
6971
|
|
6972
6972
|
Parameters
|
6973
6973
|
----------
|
@@ -6975,22 +6975,22 @@ class Tracks_Belt(openplx.Core.Object):
|
|
6975
6975
|
value: openplx::Core::Any &&
|
6976
6976
|
|
6977
6977
|
"""
|
6978
|
-
return _VehiclesSwig.
|
6978
|
+
return _VehiclesSwig.Vehicles_Tracks_Belt_setDynamic(self, key, value)
|
6979
6979
|
|
6980
6980
|
def getDynamic(self, key):
|
6981
6981
|
r"""
|
6982
|
-
getDynamic(
|
6982
|
+
getDynamic(Vehicles_Tracks_Belt self, std::string const & key) -> Any
|
6983
6983
|
|
6984
6984
|
Parameters
|
6985
6985
|
----------
|
6986
6986
|
key: std::string const &
|
6987
6987
|
|
6988
6988
|
"""
|
6989
|
-
return _VehiclesSwig.
|
6989
|
+
return _VehiclesSwig.Vehicles_Tracks_Belt_getDynamic(self, key)
|
6990
6990
|
|
6991
6991
|
def callDynamic(self, key, args):
|
6992
6992
|
r"""
|
6993
|
-
callDynamic(
|
6993
|
+
callDynamic(Vehicles_Tracks_Belt self, std::string const & key, AnyVector args) -> Any
|
6994
6994
|
|
6995
6995
|
Parameters
|
6996
6996
|
----------
|
@@ -6998,70 +6998,70 @@ class Tracks_Belt(openplx.Core.Object):
|
|
6998
6998
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
6999
6999
|
|
7000
7000
|
"""
|
7001
|
-
return _VehiclesSwig.
|
7001
|
+
return _VehiclesSwig.Vehicles_Tracks_Belt_callDynamic(self, key, args)
|
7002
7002
|
|
7003
7003
|
def extractObjectFieldsTo(self, output):
|
7004
7004
|
r"""
|
7005
|
-
extractObjectFieldsTo(
|
7005
|
+
extractObjectFieldsTo(Vehicles_Tracks_Belt self, ObjectVector output)
|
7006
7006
|
|
7007
7007
|
Parameters
|
7008
7008
|
----------
|
7009
7009
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
7010
7010
|
|
7011
7011
|
"""
|
7012
|
-
return _VehiclesSwig.
|
7012
|
+
return _VehiclesSwig.Vehicles_Tracks_Belt_extractObjectFieldsTo(self, output)
|
7013
7013
|
|
7014
7014
|
def extractEntriesTo(self, output):
|
7015
7015
|
r"""
|
7016
|
-
extractEntriesTo(
|
7016
|
+
extractEntriesTo(Vehicles_Tracks_Belt self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
7017
7017
|
|
7018
7018
|
Parameters
|
7019
7019
|
----------
|
7020
7020
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
7021
7021
|
|
7022
7022
|
"""
|
7023
|
-
return _VehiclesSwig.
|
7023
|
+
return _VehiclesSwig.Vehicles_Tracks_Belt_extractEntriesTo(self, output)
|
7024
7024
|
|
7025
7025
|
def triggerOnInit(self, context):
|
7026
7026
|
r"""
|
7027
|
-
triggerOnInit(
|
7027
|
+
triggerOnInit(Vehicles_Tracks_Belt self, openplx::RuntimeContext const & context)
|
7028
7028
|
|
7029
7029
|
Parameters
|
7030
7030
|
----------
|
7031
7031
|
context: openplx::RuntimeContext const &
|
7032
7032
|
|
7033
7033
|
"""
|
7034
|
-
return _VehiclesSwig.
|
7035
|
-
__swig_destroy__ = _VehiclesSwig.
|
7034
|
+
return _VehiclesSwig.Vehicles_Tracks_Belt_triggerOnInit(self, context)
|
7035
|
+
__swig_destroy__ = _VehiclesSwig.delete_Vehicles_Tracks_Belt
|
7036
7036
|
|
7037
|
-
# Register
|
7038
|
-
_VehiclesSwig.
|
7037
|
+
# Register Vehicles_Tracks_Belt in _VehiclesSwig:
|
7038
|
+
_VehiclesSwig.Vehicles_Tracks_Belt_swigregister(Vehicles_Tracks_Belt)
|
7039
7039
|
|
7040
|
-
class
|
7040
|
+
class Vehicles_Tracks_DefaultLinkDescription(openplx.Core.Object):
|
7041
7041
|
r"""Proxy of C++ openplx::Vehicles::Tracks::DefaultLinkDescription class."""
|
7042
7042
|
|
7043
7043
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
7044
7044
|
__repr__ = _swig_repr
|
7045
7045
|
|
7046
7046
|
def __init__(self):
|
7047
|
-
r"""__init__(
|
7048
|
-
_VehiclesSwig.
|
7047
|
+
r"""__init__(Vehicles_Tracks_DefaultLinkDescription self) -> Vehicles_Tracks_DefaultLinkDescription"""
|
7048
|
+
_VehiclesSwig.Vehicles_Tracks_DefaultLinkDescription_swiginit(self, _VehiclesSwig.new_Vehicles_Tracks_DefaultLinkDescription())
|
7049
7049
|
|
7050
7050
|
def inertia(self):
|
7051
|
-
r"""inertia(
|
7052
|
-
return _VehiclesSwig.
|
7051
|
+
r"""inertia(Vehicles_Tracks_DefaultLinkDescription self) -> std::shared_ptr< openplx::Physics3D::Bodies::Inertia >"""
|
7052
|
+
return _VehiclesSwig.Vehicles_Tracks_DefaultLinkDescription_inertia(self)
|
7053
7053
|
|
7054
7054
|
def local_cm_transform(self):
|
7055
|
-
r"""local_cm_transform(
|
7056
|
-
return _VehiclesSwig.
|
7055
|
+
r"""local_cm_transform(Vehicles_Tracks_DefaultLinkDescription self) -> std::shared_ptr< openplx::Math::AffineTransform >"""
|
7056
|
+
return _VehiclesSwig.Vehicles_Tracks_DefaultLinkDescription_local_cm_transform(self)
|
7057
7057
|
|
7058
7058
|
def variation(self):
|
7059
|
-
r"""variation(
|
7060
|
-
return _VehiclesSwig.
|
7059
|
+
r"""variation(Vehicles_Tracks_DefaultLinkDescription self) -> std::shared_ptr< openplx::Vehicles::Tracks::DefaultLinkVariation >"""
|
7060
|
+
return _VehiclesSwig.Vehicles_Tracks_DefaultLinkDescription_variation(self)
|
7061
7061
|
|
7062
7062
|
def setDynamic(self, key, value):
|
7063
7063
|
r"""
|
7064
|
-
setDynamic(
|
7064
|
+
setDynamic(Vehicles_Tracks_DefaultLinkDescription self, std::string const & key, Any value)
|
7065
7065
|
|
7066
7066
|
Parameters
|
7067
7067
|
----------
|
@@ -7069,22 +7069,22 @@ class Tracks_DefaultLinkDescription(openplx.Core.Object):
|
|
7069
7069
|
value: openplx::Core::Any &&
|
7070
7070
|
|
7071
7071
|
"""
|
7072
|
-
return _VehiclesSwig.
|
7072
|
+
return _VehiclesSwig.Vehicles_Tracks_DefaultLinkDescription_setDynamic(self, key, value)
|
7073
7073
|
|
7074
7074
|
def getDynamic(self, key):
|
7075
7075
|
r"""
|
7076
|
-
getDynamic(
|
7076
|
+
getDynamic(Vehicles_Tracks_DefaultLinkDescription self, std::string const & key) -> Any
|
7077
7077
|
|
7078
7078
|
Parameters
|
7079
7079
|
----------
|
7080
7080
|
key: std::string const &
|
7081
7081
|
|
7082
7082
|
"""
|
7083
|
-
return _VehiclesSwig.
|
7083
|
+
return _VehiclesSwig.Vehicles_Tracks_DefaultLinkDescription_getDynamic(self, key)
|
7084
7084
|
|
7085
7085
|
def callDynamic(self, key, args):
|
7086
7086
|
r"""
|
7087
|
-
callDynamic(
|
7087
|
+
callDynamic(Vehicles_Tracks_DefaultLinkDescription self, std::string const & key, AnyVector args) -> Any
|
7088
7088
|
|
7089
7089
|
Parameters
|
7090
7090
|
----------
|
@@ -7092,62 +7092,62 @@ class Tracks_DefaultLinkDescription(openplx.Core.Object):
|
|
7092
7092
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
7093
7093
|
|
7094
7094
|
"""
|
7095
|
-
return _VehiclesSwig.
|
7095
|
+
return _VehiclesSwig.Vehicles_Tracks_DefaultLinkDescription_callDynamic(self, key, args)
|
7096
7096
|
|
7097
7097
|
def extractObjectFieldsTo(self, output):
|
7098
7098
|
r"""
|
7099
|
-
extractObjectFieldsTo(
|
7099
|
+
extractObjectFieldsTo(Vehicles_Tracks_DefaultLinkDescription self, ObjectVector output)
|
7100
7100
|
|
7101
7101
|
Parameters
|
7102
7102
|
----------
|
7103
7103
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
7104
7104
|
|
7105
7105
|
"""
|
7106
|
-
return _VehiclesSwig.
|
7106
|
+
return _VehiclesSwig.Vehicles_Tracks_DefaultLinkDescription_extractObjectFieldsTo(self, output)
|
7107
7107
|
|
7108
7108
|
def extractEntriesTo(self, output):
|
7109
7109
|
r"""
|
7110
|
-
extractEntriesTo(
|
7110
|
+
extractEntriesTo(Vehicles_Tracks_DefaultLinkDescription self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
7111
7111
|
|
7112
7112
|
Parameters
|
7113
7113
|
----------
|
7114
7114
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
7115
7115
|
|
7116
7116
|
"""
|
7117
|
-
return _VehiclesSwig.
|
7117
|
+
return _VehiclesSwig.Vehicles_Tracks_DefaultLinkDescription_extractEntriesTo(self, output)
|
7118
7118
|
|
7119
7119
|
def triggerOnInit(self, context):
|
7120
7120
|
r"""
|
7121
|
-
triggerOnInit(
|
7121
|
+
triggerOnInit(Vehicles_Tracks_DefaultLinkDescription self, openplx::RuntimeContext const & context)
|
7122
7122
|
|
7123
7123
|
Parameters
|
7124
7124
|
----------
|
7125
7125
|
context: openplx::RuntimeContext const &
|
7126
7126
|
|
7127
7127
|
"""
|
7128
|
-
return _VehiclesSwig.
|
7129
|
-
__swig_destroy__ = _VehiclesSwig.
|
7128
|
+
return _VehiclesSwig.Vehicles_Tracks_DefaultLinkDescription_triggerOnInit(self, context)
|
7129
|
+
__swig_destroy__ = _VehiclesSwig.delete_Vehicles_Tracks_DefaultLinkDescription
|
7130
7130
|
|
7131
|
-
# Register
|
7132
|
-
_VehiclesSwig.
|
7131
|
+
# Register Vehicles_Tracks_DefaultLinkDescription in _VehiclesSwig:
|
7132
|
+
_VehiclesSwig.Vehicles_Tracks_DefaultLinkDescription_swigregister(Vehicles_Tracks_DefaultLinkDescription)
|
7133
7133
|
|
7134
|
-
class
|
7134
|
+
class Vehicles_Tracks_ContactGeometryLinkDescription(Vehicles_Tracks_DefaultLinkDescription):
|
7135
7135
|
r"""Proxy of C++ openplx::Vehicles::Tracks::ContactGeometryLinkDescription class."""
|
7136
7136
|
|
7137
7137
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
7138
7138
|
__repr__ = _swig_repr
|
7139
7139
|
|
7140
7140
|
def __init__(self):
|
7141
|
-
r"""__init__(
|
7142
|
-
_VehiclesSwig.
|
7141
|
+
r"""__init__(Vehicles_Tracks_ContactGeometryLinkDescription self) -> Vehicles_Tracks_ContactGeometryLinkDescription"""
|
7142
|
+
_VehiclesSwig.Vehicles_Tracks_ContactGeometryLinkDescription_swiginit(self, _VehiclesSwig.new_Vehicles_Tracks_ContactGeometryLinkDescription())
|
7143
7143
|
|
7144
7144
|
def contact_geometry(self):
|
7145
|
-
r"""contact_geometry(
|
7146
|
-
return _VehiclesSwig.
|
7145
|
+
r"""contact_geometry(Vehicles_Tracks_ContactGeometryLinkDescription self) -> std::shared_ptr< openplx::Physics3D::Charges::ContactGeometry >"""
|
7146
|
+
return _VehiclesSwig.Vehicles_Tracks_ContactGeometryLinkDescription_contact_geometry(self)
|
7147
7147
|
|
7148
7148
|
def setDynamic(self, key, value):
|
7149
7149
|
r"""
|
7150
|
-
setDynamic(
|
7150
|
+
setDynamic(Vehicles_Tracks_ContactGeometryLinkDescription self, std::string const & key, Any value)
|
7151
7151
|
|
7152
7152
|
Parameters
|
7153
7153
|
----------
|
@@ -7155,22 +7155,22 @@ class Tracks_ContactGeometryLinkDescription(Tracks_DefaultLinkDescription):
|
|
7155
7155
|
value: openplx::Core::Any &&
|
7156
7156
|
|
7157
7157
|
"""
|
7158
|
-
return _VehiclesSwig.
|
7158
|
+
return _VehiclesSwig.Vehicles_Tracks_ContactGeometryLinkDescription_setDynamic(self, key, value)
|
7159
7159
|
|
7160
7160
|
def getDynamic(self, key):
|
7161
7161
|
r"""
|
7162
|
-
getDynamic(
|
7162
|
+
getDynamic(Vehicles_Tracks_ContactGeometryLinkDescription self, std::string const & key) -> Any
|
7163
7163
|
|
7164
7164
|
Parameters
|
7165
7165
|
----------
|
7166
7166
|
key: std::string const &
|
7167
7167
|
|
7168
7168
|
"""
|
7169
|
-
return _VehiclesSwig.
|
7169
|
+
return _VehiclesSwig.Vehicles_Tracks_ContactGeometryLinkDescription_getDynamic(self, key)
|
7170
7170
|
|
7171
7171
|
def callDynamic(self, key, args):
|
7172
7172
|
r"""
|
7173
|
-
callDynamic(
|
7173
|
+
callDynamic(Vehicles_Tracks_ContactGeometryLinkDescription self, std::string const & key, AnyVector args) -> Any
|
7174
7174
|
|
7175
7175
|
Parameters
|
7176
7176
|
----------
|
@@ -7178,74 +7178,74 @@ class Tracks_ContactGeometryLinkDescription(Tracks_DefaultLinkDescription):
|
|
7178
7178
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
7179
7179
|
|
7180
7180
|
"""
|
7181
|
-
return _VehiclesSwig.
|
7181
|
+
return _VehiclesSwig.Vehicles_Tracks_ContactGeometryLinkDescription_callDynamic(self, key, args)
|
7182
7182
|
|
7183
7183
|
def extractObjectFieldsTo(self, output):
|
7184
7184
|
r"""
|
7185
|
-
extractObjectFieldsTo(
|
7185
|
+
extractObjectFieldsTo(Vehicles_Tracks_ContactGeometryLinkDescription self, ObjectVector output)
|
7186
7186
|
|
7187
7187
|
Parameters
|
7188
7188
|
----------
|
7189
7189
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
7190
7190
|
|
7191
7191
|
"""
|
7192
|
-
return _VehiclesSwig.
|
7192
|
+
return _VehiclesSwig.Vehicles_Tracks_ContactGeometryLinkDescription_extractObjectFieldsTo(self, output)
|
7193
7193
|
|
7194
7194
|
def extractEntriesTo(self, output):
|
7195
7195
|
r"""
|
7196
|
-
extractEntriesTo(
|
7196
|
+
extractEntriesTo(Vehicles_Tracks_ContactGeometryLinkDescription self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
7197
7197
|
|
7198
7198
|
Parameters
|
7199
7199
|
----------
|
7200
7200
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
7201
7201
|
|
7202
7202
|
"""
|
7203
|
-
return _VehiclesSwig.
|
7203
|
+
return _VehiclesSwig.Vehicles_Tracks_ContactGeometryLinkDescription_extractEntriesTo(self, output)
|
7204
7204
|
|
7205
7205
|
def triggerOnInit(self, context):
|
7206
7206
|
r"""
|
7207
|
-
triggerOnInit(
|
7207
|
+
triggerOnInit(Vehicles_Tracks_ContactGeometryLinkDescription self, openplx::RuntimeContext const & context)
|
7208
7208
|
|
7209
7209
|
Parameters
|
7210
7210
|
----------
|
7211
7211
|
context: openplx::RuntimeContext const &
|
7212
7212
|
|
7213
7213
|
"""
|
7214
|
-
return _VehiclesSwig.
|
7215
|
-
__swig_destroy__ = _VehiclesSwig.
|
7214
|
+
return _VehiclesSwig.Vehicles_Tracks_ContactGeometryLinkDescription_triggerOnInit(self, context)
|
7215
|
+
__swig_destroy__ = _VehiclesSwig.delete_Vehicles_Tracks_ContactGeometryLinkDescription
|
7216
7216
|
|
7217
|
-
# Register
|
7218
|
-
_VehiclesSwig.
|
7217
|
+
# Register Vehicles_Tracks_ContactGeometryLinkDescription in _VehiclesSwig:
|
7218
|
+
_VehiclesSwig.Vehicles_Tracks_ContactGeometryLinkDescription_swigregister(Vehicles_Tracks_ContactGeometryLinkDescription)
|
7219
7219
|
|
7220
|
-
class
|
7220
|
+
class Vehicles_Tracks_BoxLinkDescription(Vehicles_Tracks_ContactGeometryLinkDescription):
|
7221
7221
|
r"""Proxy of C++ openplx::Vehicles::Tracks::BoxLinkDescription class."""
|
7222
7222
|
|
7223
7223
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
7224
7224
|
__repr__ = _swig_repr
|
7225
7225
|
|
7226
7226
|
def __init__(self):
|
7227
|
-
r"""__init__(
|
7228
|
-
_VehiclesSwig.
|
7227
|
+
r"""__init__(Vehicles_Tracks_BoxLinkDescription self) -> Vehicles_Tracks_BoxLinkDescription"""
|
7228
|
+
_VehiclesSwig.Vehicles_Tracks_BoxLinkDescription_swiginit(self, _VehiclesSwig.new_Vehicles_Tracks_BoxLinkDescription())
|
7229
7229
|
|
7230
7230
|
def width(self):
|
7231
|
-
r"""width(
|
7232
|
-
return _VehiclesSwig.
|
7231
|
+
r"""width(Vehicles_Tracks_BoxLinkDescription self) -> double"""
|
7232
|
+
return _VehiclesSwig.Vehicles_Tracks_BoxLinkDescription_width(self)
|
7233
7233
|
|
7234
7234
|
def height(self):
|
7235
|
-
r"""height(
|
7236
|
-
return _VehiclesSwig.
|
7235
|
+
r"""height(Vehicles_Tracks_BoxLinkDescription self) -> double"""
|
7236
|
+
return _VehiclesSwig.Vehicles_Tracks_BoxLinkDescription_height(self)
|
7237
7237
|
|
7238
7238
|
def contact_geometry(self):
|
7239
|
-
r"""contact_geometry(
|
7240
|
-
return _VehiclesSwig.
|
7239
|
+
r"""contact_geometry(Vehicles_Tracks_BoxLinkDescription self) -> std::shared_ptr< openplx::Physics3D::Charges::Box >"""
|
7240
|
+
return _VehiclesSwig.Vehicles_Tracks_BoxLinkDescription_contact_geometry(self)
|
7241
7241
|
|
7242
7242
|
def variation(self):
|
7243
|
-
r"""variation(
|
7244
|
-
return _VehiclesSwig.
|
7243
|
+
r"""variation(Vehicles_Tracks_BoxLinkDescription self) -> std::shared_ptr< openplx::Vehicles::Tracks::BoxLinkVariation >"""
|
7244
|
+
return _VehiclesSwig.Vehicles_Tracks_BoxLinkDescription_variation(self)
|
7245
7245
|
|
7246
7246
|
def setDynamic(self, key, value):
|
7247
7247
|
r"""
|
7248
|
-
setDynamic(
|
7248
|
+
setDynamic(Vehicles_Tracks_BoxLinkDescription self, std::string const & key, Any value)
|
7249
7249
|
|
7250
7250
|
Parameters
|
7251
7251
|
----------
|
@@ -7253,22 +7253,22 @@ class Tracks_BoxLinkDescription(Tracks_ContactGeometryLinkDescription):
|
|
7253
7253
|
value: openplx::Core::Any &&
|
7254
7254
|
|
7255
7255
|
"""
|
7256
|
-
return _VehiclesSwig.
|
7256
|
+
return _VehiclesSwig.Vehicles_Tracks_BoxLinkDescription_setDynamic(self, key, value)
|
7257
7257
|
|
7258
7258
|
def getDynamic(self, key):
|
7259
7259
|
r"""
|
7260
|
-
getDynamic(
|
7260
|
+
getDynamic(Vehicles_Tracks_BoxLinkDescription self, std::string const & key) -> Any
|
7261
7261
|
|
7262
7262
|
Parameters
|
7263
7263
|
----------
|
7264
7264
|
key: std::string const &
|
7265
7265
|
|
7266
7266
|
"""
|
7267
|
-
return _VehiclesSwig.
|
7267
|
+
return _VehiclesSwig.Vehicles_Tracks_BoxLinkDescription_getDynamic(self, key)
|
7268
7268
|
|
7269
7269
|
def callDynamic(self, key, args):
|
7270
7270
|
r"""
|
7271
|
-
callDynamic(
|
7271
|
+
callDynamic(Vehicles_Tracks_BoxLinkDescription self, std::string const & key, AnyVector args) -> Any
|
7272
7272
|
|
7273
7273
|
Parameters
|
7274
7274
|
----------
|
@@ -7276,58 +7276,58 @@ class Tracks_BoxLinkDescription(Tracks_ContactGeometryLinkDescription):
|
|
7276
7276
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
7277
7277
|
|
7278
7278
|
"""
|
7279
|
-
return _VehiclesSwig.
|
7279
|
+
return _VehiclesSwig.Vehicles_Tracks_BoxLinkDescription_callDynamic(self, key, args)
|
7280
7280
|
|
7281
7281
|
def extractObjectFieldsTo(self, output):
|
7282
7282
|
r"""
|
7283
|
-
extractObjectFieldsTo(
|
7283
|
+
extractObjectFieldsTo(Vehicles_Tracks_BoxLinkDescription self, ObjectVector output)
|
7284
7284
|
|
7285
7285
|
Parameters
|
7286
7286
|
----------
|
7287
7287
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
7288
7288
|
|
7289
7289
|
"""
|
7290
|
-
return _VehiclesSwig.
|
7290
|
+
return _VehiclesSwig.Vehicles_Tracks_BoxLinkDescription_extractObjectFieldsTo(self, output)
|
7291
7291
|
|
7292
7292
|
def extractEntriesTo(self, output):
|
7293
7293
|
r"""
|
7294
|
-
extractEntriesTo(
|
7294
|
+
extractEntriesTo(Vehicles_Tracks_BoxLinkDescription self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
7295
7295
|
|
7296
7296
|
Parameters
|
7297
7297
|
----------
|
7298
7298
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
7299
7299
|
|
7300
7300
|
"""
|
7301
|
-
return _VehiclesSwig.
|
7301
|
+
return _VehiclesSwig.Vehicles_Tracks_BoxLinkDescription_extractEntriesTo(self, output)
|
7302
7302
|
|
7303
7303
|
def triggerOnInit(self, context):
|
7304
7304
|
r"""
|
7305
|
-
triggerOnInit(
|
7305
|
+
triggerOnInit(Vehicles_Tracks_BoxLinkDescription self, openplx::RuntimeContext const & context)
|
7306
7306
|
|
7307
7307
|
Parameters
|
7308
7308
|
----------
|
7309
7309
|
context: openplx::RuntimeContext const &
|
7310
7310
|
|
7311
7311
|
"""
|
7312
|
-
return _VehiclesSwig.
|
7313
|
-
__swig_destroy__ = _VehiclesSwig.
|
7312
|
+
return _VehiclesSwig.Vehicles_Tracks_BoxLinkDescription_triggerOnInit(self, context)
|
7313
|
+
__swig_destroy__ = _VehiclesSwig.delete_Vehicles_Tracks_BoxLinkDescription
|
7314
7314
|
|
7315
|
-
# Register
|
7316
|
-
_VehiclesSwig.
|
7315
|
+
# Register Vehicles_Tracks_BoxLinkDescription in _VehiclesSwig:
|
7316
|
+
_VehiclesSwig.Vehicles_Tracks_BoxLinkDescription_swigregister(Vehicles_Tracks_BoxLinkDescription)
|
7317
7317
|
|
7318
|
-
class
|
7318
|
+
class Vehicles_Tracks_DefaultLinkVariation(openplx.Core.Object):
|
7319
7319
|
r"""Proxy of C++ openplx::Vehicles::Tracks::DefaultLinkVariation class."""
|
7320
7320
|
|
7321
7321
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
7322
7322
|
__repr__ = _swig_repr
|
7323
7323
|
|
7324
7324
|
def __init__(self):
|
7325
|
-
r"""__init__(
|
7326
|
-
_VehiclesSwig.
|
7325
|
+
r"""__init__(Vehicles_Tracks_DefaultLinkVariation self) -> Vehicles_Tracks_DefaultLinkVariation"""
|
7326
|
+
_VehiclesSwig.Vehicles_Tracks_DefaultLinkVariation_swiginit(self, _VehiclesSwig.new_Vehicles_Tracks_DefaultLinkVariation())
|
7327
7327
|
|
7328
7328
|
def setDynamic(self, key, value):
|
7329
7329
|
r"""
|
7330
|
-
setDynamic(
|
7330
|
+
setDynamic(Vehicles_Tracks_DefaultLinkVariation self, std::string const & key, Any value)
|
7331
7331
|
|
7332
7332
|
Parameters
|
7333
7333
|
----------
|
@@ -7335,22 +7335,22 @@ class Tracks_DefaultLinkVariation(openplx.Core.Object):
|
|
7335
7335
|
value: openplx::Core::Any &&
|
7336
7336
|
|
7337
7337
|
"""
|
7338
|
-
return _VehiclesSwig.
|
7338
|
+
return _VehiclesSwig.Vehicles_Tracks_DefaultLinkVariation_setDynamic(self, key, value)
|
7339
7339
|
|
7340
7340
|
def getDynamic(self, key):
|
7341
7341
|
r"""
|
7342
|
-
getDynamic(
|
7342
|
+
getDynamic(Vehicles_Tracks_DefaultLinkVariation self, std::string const & key) -> Any
|
7343
7343
|
|
7344
7344
|
Parameters
|
7345
7345
|
----------
|
7346
7346
|
key: std::string const &
|
7347
7347
|
|
7348
7348
|
"""
|
7349
|
-
return _VehiclesSwig.
|
7349
|
+
return _VehiclesSwig.Vehicles_Tracks_DefaultLinkVariation_getDynamic(self, key)
|
7350
7350
|
|
7351
7351
|
def callDynamic(self, key, args):
|
7352
7352
|
r"""
|
7353
|
-
callDynamic(
|
7353
|
+
callDynamic(Vehicles_Tracks_DefaultLinkVariation self, std::string const & key, AnyVector args) -> Any
|
7354
7354
|
|
7355
7355
|
Parameters
|
7356
7356
|
----------
|
@@ -7358,66 +7358,66 @@ class Tracks_DefaultLinkVariation(openplx.Core.Object):
|
|
7358
7358
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
7359
7359
|
|
7360
7360
|
"""
|
7361
|
-
return _VehiclesSwig.
|
7361
|
+
return _VehiclesSwig.Vehicles_Tracks_DefaultLinkVariation_callDynamic(self, key, args)
|
7362
7362
|
|
7363
7363
|
def extractObjectFieldsTo(self, output):
|
7364
7364
|
r"""
|
7365
|
-
extractObjectFieldsTo(
|
7365
|
+
extractObjectFieldsTo(Vehicles_Tracks_DefaultLinkVariation self, ObjectVector output)
|
7366
7366
|
|
7367
7367
|
Parameters
|
7368
7368
|
----------
|
7369
7369
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
7370
7370
|
|
7371
7371
|
"""
|
7372
|
-
return _VehiclesSwig.
|
7372
|
+
return _VehiclesSwig.Vehicles_Tracks_DefaultLinkVariation_extractObjectFieldsTo(self, output)
|
7373
7373
|
|
7374
7374
|
def extractEntriesTo(self, output):
|
7375
7375
|
r"""
|
7376
|
-
extractEntriesTo(
|
7376
|
+
extractEntriesTo(Vehicles_Tracks_DefaultLinkVariation self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
7377
7377
|
|
7378
7378
|
Parameters
|
7379
7379
|
----------
|
7380
7380
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
7381
7381
|
|
7382
7382
|
"""
|
7383
|
-
return _VehiclesSwig.
|
7383
|
+
return _VehiclesSwig.Vehicles_Tracks_DefaultLinkVariation_extractEntriesTo(self, output)
|
7384
7384
|
|
7385
7385
|
def triggerOnInit(self, context):
|
7386
7386
|
r"""
|
7387
|
-
triggerOnInit(
|
7387
|
+
triggerOnInit(Vehicles_Tracks_DefaultLinkVariation self, openplx::RuntimeContext const & context)
|
7388
7388
|
|
7389
7389
|
Parameters
|
7390
7390
|
----------
|
7391
7391
|
context: openplx::RuntimeContext const &
|
7392
7392
|
|
7393
7393
|
"""
|
7394
|
-
return _VehiclesSwig.
|
7395
|
-
__swig_destroy__ = _VehiclesSwig.
|
7394
|
+
return _VehiclesSwig.Vehicles_Tracks_DefaultLinkVariation_triggerOnInit(self, context)
|
7395
|
+
__swig_destroy__ = _VehiclesSwig.delete_Vehicles_Tracks_DefaultLinkVariation
|
7396
7396
|
|
7397
|
-
# Register
|
7398
|
-
_VehiclesSwig.
|
7397
|
+
# Register Vehicles_Tracks_DefaultLinkVariation in _VehiclesSwig:
|
7398
|
+
_VehiclesSwig.Vehicles_Tracks_DefaultLinkVariation_swigregister(Vehicles_Tracks_DefaultLinkVariation)
|
7399
7399
|
|
7400
|
-
class
|
7400
|
+
class Vehicles_Tracks_BoxLinkVariation(Vehicles_Tracks_DefaultLinkVariation):
|
7401
7401
|
r"""Proxy of C++ openplx::Vehicles::Tracks::BoxLinkVariation class."""
|
7402
7402
|
|
7403
7403
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
7404
7404
|
__repr__ = _swig_repr
|
7405
7405
|
|
7406
7406
|
def __init__(self):
|
7407
|
-
r"""__init__(
|
7408
|
-
_VehiclesSwig.
|
7407
|
+
r"""__init__(Vehicles_Tracks_BoxLinkVariation self) -> Vehicles_Tracks_BoxLinkVariation"""
|
7408
|
+
_VehiclesSwig.Vehicles_Tracks_BoxLinkVariation_swiginit(self, _VehiclesSwig.new_Vehicles_Tracks_BoxLinkVariation())
|
7409
7409
|
|
7410
7410
|
def height_variation(self):
|
7411
|
-
r"""height_variation(
|
7412
|
-
return _VehiclesSwig.
|
7411
|
+
r"""height_variation(Vehicles_Tracks_BoxLinkVariation self) -> std::shared_ptr< openplx::Vehicles::Tracks::CyclicVariation >"""
|
7412
|
+
return _VehiclesSwig.Vehicles_Tracks_BoxLinkVariation_height_variation(self)
|
7413
7413
|
|
7414
7414
|
def width_variation(self):
|
7415
|
-
r"""width_variation(
|
7416
|
-
return _VehiclesSwig.
|
7415
|
+
r"""width_variation(Vehicles_Tracks_BoxLinkVariation self) -> std::shared_ptr< openplx::Vehicles::Tracks::CyclicVariation >"""
|
7416
|
+
return _VehiclesSwig.Vehicles_Tracks_BoxLinkVariation_width_variation(self)
|
7417
7417
|
|
7418
7418
|
def setDynamic(self, key, value):
|
7419
7419
|
r"""
|
7420
|
-
setDynamic(
|
7420
|
+
setDynamic(Vehicles_Tracks_BoxLinkVariation self, std::string const & key, Any value)
|
7421
7421
|
|
7422
7422
|
Parameters
|
7423
7423
|
----------
|
@@ -7425,22 +7425,22 @@ class Tracks_BoxLinkVariation(Tracks_DefaultLinkVariation):
|
|
7425
7425
|
value: openplx::Core::Any &&
|
7426
7426
|
|
7427
7427
|
"""
|
7428
|
-
return _VehiclesSwig.
|
7428
|
+
return _VehiclesSwig.Vehicles_Tracks_BoxLinkVariation_setDynamic(self, key, value)
|
7429
7429
|
|
7430
7430
|
def getDynamic(self, key):
|
7431
7431
|
r"""
|
7432
|
-
getDynamic(
|
7432
|
+
getDynamic(Vehicles_Tracks_BoxLinkVariation self, std::string const & key) -> Any
|
7433
7433
|
|
7434
7434
|
Parameters
|
7435
7435
|
----------
|
7436
7436
|
key: std::string const &
|
7437
7437
|
|
7438
7438
|
"""
|
7439
|
-
return _VehiclesSwig.
|
7439
|
+
return _VehiclesSwig.Vehicles_Tracks_BoxLinkVariation_getDynamic(self, key)
|
7440
7440
|
|
7441
7441
|
def callDynamic(self, key, args):
|
7442
7442
|
r"""
|
7443
|
-
callDynamic(
|
7443
|
+
callDynamic(Vehicles_Tracks_BoxLinkVariation self, std::string const & key, AnyVector args) -> Any
|
7444
7444
|
|
7445
7445
|
Parameters
|
7446
7446
|
----------
|
@@ -7448,58 +7448,58 @@ class Tracks_BoxLinkVariation(Tracks_DefaultLinkVariation):
|
|
7448
7448
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
7449
7449
|
|
7450
7450
|
"""
|
7451
|
-
return _VehiclesSwig.
|
7451
|
+
return _VehiclesSwig.Vehicles_Tracks_BoxLinkVariation_callDynamic(self, key, args)
|
7452
7452
|
|
7453
7453
|
def extractObjectFieldsTo(self, output):
|
7454
7454
|
r"""
|
7455
|
-
extractObjectFieldsTo(
|
7455
|
+
extractObjectFieldsTo(Vehicles_Tracks_BoxLinkVariation self, ObjectVector output)
|
7456
7456
|
|
7457
7457
|
Parameters
|
7458
7458
|
----------
|
7459
7459
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
7460
7460
|
|
7461
7461
|
"""
|
7462
|
-
return _VehiclesSwig.
|
7462
|
+
return _VehiclesSwig.Vehicles_Tracks_BoxLinkVariation_extractObjectFieldsTo(self, output)
|
7463
7463
|
|
7464
7464
|
def extractEntriesTo(self, output):
|
7465
7465
|
r"""
|
7466
|
-
extractEntriesTo(
|
7466
|
+
extractEntriesTo(Vehicles_Tracks_BoxLinkVariation self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
7467
7467
|
|
7468
7468
|
Parameters
|
7469
7469
|
----------
|
7470
7470
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
7471
7471
|
|
7472
7472
|
"""
|
7473
|
-
return _VehiclesSwig.
|
7473
|
+
return _VehiclesSwig.Vehicles_Tracks_BoxLinkVariation_extractEntriesTo(self, output)
|
7474
7474
|
|
7475
7475
|
def triggerOnInit(self, context):
|
7476
7476
|
r"""
|
7477
|
-
triggerOnInit(
|
7477
|
+
triggerOnInit(Vehicles_Tracks_BoxLinkVariation self, openplx::RuntimeContext const & context)
|
7478
7478
|
|
7479
7479
|
Parameters
|
7480
7480
|
----------
|
7481
7481
|
context: openplx::RuntimeContext const &
|
7482
7482
|
|
7483
7483
|
"""
|
7484
|
-
return _VehiclesSwig.
|
7485
|
-
__swig_destroy__ = _VehiclesSwig.
|
7484
|
+
return _VehiclesSwig.Vehicles_Tracks_BoxLinkVariation_triggerOnInit(self, context)
|
7485
|
+
__swig_destroy__ = _VehiclesSwig.delete_Vehicles_Tracks_BoxLinkVariation
|
7486
7486
|
|
7487
|
-
# Register
|
7488
|
-
_VehiclesSwig.
|
7487
|
+
# Register Vehicles_Tracks_BoxLinkVariation in _VehiclesSwig:
|
7488
|
+
_VehiclesSwig.Vehicles_Tracks_BoxLinkVariation_swigregister(Vehicles_Tracks_BoxLinkVariation)
|
7489
7489
|
|
7490
|
-
class
|
7490
|
+
class Vehicles_Tracks_CyclicVariation(openplx.Core.Object):
|
7491
7491
|
r"""Proxy of C++ openplx::Vehicles::Tracks::CyclicVariation class."""
|
7492
7492
|
|
7493
7493
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
7494
7494
|
__repr__ = _swig_repr
|
7495
7495
|
|
7496
7496
|
def __init__(self):
|
7497
|
-
r"""__init__(
|
7498
|
-
_VehiclesSwig.
|
7497
|
+
r"""__init__(Vehicles_Tracks_CyclicVariation self) -> Vehicles_Tracks_CyclicVariation"""
|
7498
|
+
_VehiclesSwig.Vehicles_Tracks_CyclicVariation_swiginit(self, _VehiclesSwig.new_Vehicles_Tracks_CyclicVariation())
|
7499
7499
|
|
7500
7500
|
def setDynamic(self, key, value):
|
7501
7501
|
r"""
|
7502
|
-
setDynamic(
|
7502
|
+
setDynamic(Vehicles_Tracks_CyclicVariation self, std::string const & key, Any value)
|
7503
7503
|
|
7504
7504
|
Parameters
|
7505
7505
|
----------
|
@@ -7507,22 +7507,22 @@ class Tracks_CyclicVariation(openplx.Core.Object):
|
|
7507
7507
|
value: openplx::Core::Any &&
|
7508
7508
|
|
7509
7509
|
"""
|
7510
|
-
return _VehiclesSwig.
|
7510
|
+
return _VehiclesSwig.Vehicles_Tracks_CyclicVariation_setDynamic(self, key, value)
|
7511
7511
|
|
7512
7512
|
def getDynamic(self, key):
|
7513
7513
|
r"""
|
7514
|
-
getDynamic(
|
7514
|
+
getDynamic(Vehicles_Tracks_CyclicVariation self, std::string const & key) -> Any
|
7515
7515
|
|
7516
7516
|
Parameters
|
7517
7517
|
----------
|
7518
7518
|
key: std::string const &
|
7519
7519
|
|
7520
7520
|
"""
|
7521
|
-
return _VehiclesSwig.
|
7521
|
+
return _VehiclesSwig.Vehicles_Tracks_CyclicVariation_getDynamic(self, key)
|
7522
7522
|
|
7523
7523
|
def callDynamic(self, key, args):
|
7524
7524
|
r"""
|
7525
|
-
callDynamic(
|
7525
|
+
callDynamic(Vehicles_Tracks_CyclicVariation self, std::string const & key, AnyVector args) -> Any
|
7526
7526
|
|
7527
7527
|
Parameters
|
7528
7528
|
----------
|
@@ -7530,66 +7530,66 @@ class Tracks_CyclicVariation(openplx.Core.Object):
|
|
7530
7530
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
7531
7531
|
|
7532
7532
|
"""
|
7533
|
-
return _VehiclesSwig.
|
7533
|
+
return _VehiclesSwig.Vehicles_Tracks_CyclicVariation_callDynamic(self, key, args)
|
7534
7534
|
|
7535
7535
|
def extractObjectFieldsTo(self, output):
|
7536
7536
|
r"""
|
7537
|
-
extractObjectFieldsTo(
|
7537
|
+
extractObjectFieldsTo(Vehicles_Tracks_CyclicVariation self, ObjectVector output)
|
7538
7538
|
|
7539
7539
|
Parameters
|
7540
7540
|
----------
|
7541
7541
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
7542
7542
|
|
7543
7543
|
"""
|
7544
|
-
return _VehiclesSwig.
|
7544
|
+
return _VehiclesSwig.Vehicles_Tracks_CyclicVariation_extractObjectFieldsTo(self, output)
|
7545
7545
|
|
7546
7546
|
def extractEntriesTo(self, output):
|
7547
7547
|
r"""
|
7548
|
-
extractEntriesTo(
|
7548
|
+
extractEntriesTo(Vehicles_Tracks_CyclicVariation self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
7549
7549
|
|
7550
7550
|
Parameters
|
7551
7551
|
----------
|
7552
7552
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
7553
7553
|
|
7554
7554
|
"""
|
7555
|
-
return _VehiclesSwig.
|
7555
|
+
return _VehiclesSwig.Vehicles_Tracks_CyclicVariation_extractEntriesTo(self, output)
|
7556
7556
|
|
7557
7557
|
def triggerOnInit(self, context):
|
7558
7558
|
r"""
|
7559
|
-
triggerOnInit(
|
7559
|
+
triggerOnInit(Vehicles_Tracks_CyclicVariation self, openplx::RuntimeContext const & context)
|
7560
7560
|
|
7561
7561
|
Parameters
|
7562
7562
|
----------
|
7563
7563
|
context: openplx::RuntimeContext const &
|
7564
7564
|
|
7565
7565
|
"""
|
7566
|
-
return _VehiclesSwig.
|
7567
|
-
__swig_destroy__ = _VehiclesSwig.
|
7566
|
+
return _VehiclesSwig.Vehicles_Tracks_CyclicVariation_triggerOnInit(self, context)
|
7567
|
+
__swig_destroy__ = _VehiclesSwig.delete_Vehicles_Tracks_CyclicVariation
|
7568
7568
|
|
7569
|
-
# Register
|
7570
|
-
_VehiclesSwig.
|
7569
|
+
# Register Vehicles_Tracks_CyclicVariation in _VehiclesSwig:
|
7570
|
+
_VehiclesSwig.Vehicles_Tracks_CyclicVariation_swigregister(Vehicles_Tracks_CyclicVariation)
|
7571
7571
|
|
7572
|
-
class
|
7572
|
+
class Vehicles_Tracks_RoadWheel(openplx.Physics3D.Physics3D_System):
|
7573
7573
|
r"""Proxy of C++ openplx::Vehicles::Tracks::RoadWheel class."""
|
7574
7574
|
|
7575
7575
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
7576
7576
|
__repr__ = _swig_repr
|
7577
7577
|
|
7578
7578
|
def __init__(self):
|
7579
|
-
r"""__init__(
|
7580
|
-
_VehiclesSwig.
|
7579
|
+
r"""__init__(Vehicles_Tracks_RoadWheel self) -> Vehicles_Tracks_RoadWheel"""
|
7580
|
+
_VehiclesSwig.Vehicles_Tracks_RoadWheel_swiginit(self, _VehiclesSwig.new_Vehicles_Tracks_RoadWheel())
|
7581
7581
|
|
7582
7582
|
def local_center_axis(self):
|
7583
|
-
r"""local_center_axis(
|
7584
|
-
return _VehiclesSwig.
|
7583
|
+
r"""local_center_axis(Vehicles_Tracks_RoadWheel self) -> std::shared_ptr< openplx::Math::Vec3 >"""
|
7584
|
+
return _VehiclesSwig.Vehicles_Tracks_RoadWheel_local_center_axis(self)
|
7585
7585
|
|
7586
7586
|
def center_connector(self):
|
7587
|
-
r"""center_connector(
|
7588
|
-
return _VehiclesSwig.
|
7587
|
+
r"""center_connector(Vehicles_Tracks_RoadWheel self) -> std::shared_ptr< openplx::Physics3D::Charges::RedirectedMateConnector >"""
|
7588
|
+
return _VehiclesSwig.Vehicles_Tracks_RoadWheel_center_connector(self)
|
7589
7589
|
|
7590
7590
|
def setDynamic(self, key, value):
|
7591
7591
|
r"""
|
7592
|
-
setDynamic(
|
7592
|
+
setDynamic(Vehicles_Tracks_RoadWheel self, std::string const & key, Any value)
|
7593
7593
|
|
7594
7594
|
Parameters
|
7595
7595
|
----------
|
@@ -7597,22 +7597,22 @@ class Tracks_RoadWheel(openplx.Physics3D.System):
|
|
7597
7597
|
value: openplx::Core::Any &&
|
7598
7598
|
|
7599
7599
|
"""
|
7600
|
-
return _VehiclesSwig.
|
7600
|
+
return _VehiclesSwig.Vehicles_Tracks_RoadWheel_setDynamic(self, key, value)
|
7601
7601
|
|
7602
7602
|
def getDynamic(self, key):
|
7603
7603
|
r"""
|
7604
|
-
getDynamic(
|
7604
|
+
getDynamic(Vehicles_Tracks_RoadWheel self, std::string const & key) -> Any
|
7605
7605
|
|
7606
7606
|
Parameters
|
7607
7607
|
----------
|
7608
7608
|
key: std::string const &
|
7609
7609
|
|
7610
7610
|
"""
|
7611
|
-
return _VehiclesSwig.
|
7611
|
+
return _VehiclesSwig.Vehicles_Tracks_RoadWheel_getDynamic(self, key)
|
7612
7612
|
|
7613
7613
|
def callDynamic(self, key, args):
|
7614
7614
|
r"""
|
7615
|
-
callDynamic(
|
7615
|
+
callDynamic(Vehicles_Tracks_RoadWheel self, std::string const & key, AnyVector args) -> Any
|
7616
7616
|
|
7617
7617
|
Parameters
|
7618
7618
|
----------
|
@@ -7620,62 +7620,62 @@ class Tracks_RoadWheel(openplx.Physics3D.System):
|
|
7620
7620
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
7621
7621
|
|
7622
7622
|
"""
|
7623
|
-
return _VehiclesSwig.
|
7623
|
+
return _VehiclesSwig.Vehicles_Tracks_RoadWheel_callDynamic(self, key, args)
|
7624
7624
|
|
7625
7625
|
def extractObjectFieldsTo(self, output):
|
7626
7626
|
r"""
|
7627
|
-
extractObjectFieldsTo(
|
7627
|
+
extractObjectFieldsTo(Vehicles_Tracks_RoadWheel self, ObjectVector output)
|
7628
7628
|
|
7629
7629
|
Parameters
|
7630
7630
|
----------
|
7631
7631
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
7632
7632
|
|
7633
7633
|
"""
|
7634
|
-
return _VehiclesSwig.
|
7634
|
+
return _VehiclesSwig.Vehicles_Tracks_RoadWheel_extractObjectFieldsTo(self, output)
|
7635
7635
|
|
7636
7636
|
def extractEntriesTo(self, output):
|
7637
7637
|
r"""
|
7638
|
-
extractEntriesTo(
|
7638
|
+
extractEntriesTo(Vehicles_Tracks_RoadWheel self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
7639
7639
|
|
7640
7640
|
Parameters
|
7641
7641
|
----------
|
7642
7642
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
7643
7643
|
|
7644
7644
|
"""
|
7645
|
-
return _VehiclesSwig.
|
7645
|
+
return _VehiclesSwig.Vehicles_Tracks_RoadWheel_extractEntriesTo(self, output)
|
7646
7646
|
|
7647
7647
|
def triggerOnInit(self, context):
|
7648
7648
|
r"""
|
7649
|
-
triggerOnInit(
|
7649
|
+
triggerOnInit(Vehicles_Tracks_RoadWheel self, openplx::RuntimeContext const & context)
|
7650
7650
|
|
7651
7651
|
Parameters
|
7652
7652
|
----------
|
7653
7653
|
context: openplx::RuntimeContext const &
|
7654
7654
|
|
7655
7655
|
"""
|
7656
|
-
return _VehiclesSwig.
|
7657
|
-
__swig_destroy__ = _VehiclesSwig.
|
7656
|
+
return _VehiclesSwig.Vehicles_Tracks_RoadWheel_triggerOnInit(self, context)
|
7657
|
+
__swig_destroy__ = _VehiclesSwig.delete_Vehicles_Tracks_RoadWheel
|
7658
7658
|
|
7659
|
-
# Register
|
7660
|
-
_VehiclesSwig.
|
7659
|
+
# Register Vehicles_Tracks_RoadWheel in _VehiclesSwig:
|
7660
|
+
_VehiclesSwig.Vehicles_Tracks_RoadWheel_swigregister(Vehicles_Tracks_RoadWheel)
|
7661
7661
|
|
7662
|
-
class
|
7662
|
+
class Vehicles_Tracks_IntertialRoadWheel(Vehicles_Tracks_RoadWheel):
|
7663
7663
|
r"""Proxy of C++ openplx::Vehicles::Tracks::IntertialRoadWheel class."""
|
7664
7664
|
|
7665
7665
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
7666
7666
|
__repr__ = _swig_repr
|
7667
7667
|
|
7668
7668
|
def __init__(self):
|
7669
|
-
r"""__init__(
|
7670
|
-
_VehiclesSwig.
|
7669
|
+
r"""__init__(Vehicles_Tracks_IntertialRoadWheel self) -> Vehicles_Tracks_IntertialRoadWheel"""
|
7670
|
+
_VehiclesSwig.Vehicles_Tracks_IntertialRoadWheel_swiginit(self, _VehiclesSwig.new_Vehicles_Tracks_IntertialRoadWheel())
|
7671
7671
|
|
7672
7672
|
def body(self):
|
7673
|
-
r"""body(
|
7674
|
-
return _VehiclesSwig.
|
7673
|
+
r"""body(Vehicles_Tracks_IntertialRoadWheel self) -> std::shared_ptr< openplx::Physics3D::Bodies::Body >"""
|
7674
|
+
return _VehiclesSwig.Vehicles_Tracks_IntertialRoadWheel_body(self)
|
7675
7675
|
|
7676
7676
|
def setDynamic(self, key, value):
|
7677
7677
|
r"""
|
7678
|
-
setDynamic(
|
7678
|
+
setDynamic(Vehicles_Tracks_IntertialRoadWheel self, std::string const & key, Any value)
|
7679
7679
|
|
7680
7680
|
Parameters
|
7681
7681
|
----------
|
@@ -7683,22 +7683,22 @@ class Tracks_IntertialRoadWheel(Tracks_RoadWheel):
|
|
7683
7683
|
value: openplx::Core::Any &&
|
7684
7684
|
|
7685
7685
|
"""
|
7686
|
-
return _VehiclesSwig.
|
7686
|
+
return _VehiclesSwig.Vehicles_Tracks_IntertialRoadWheel_setDynamic(self, key, value)
|
7687
7687
|
|
7688
7688
|
def getDynamic(self, key):
|
7689
7689
|
r"""
|
7690
|
-
getDynamic(
|
7690
|
+
getDynamic(Vehicles_Tracks_IntertialRoadWheel self, std::string const & key) -> Any
|
7691
7691
|
|
7692
7692
|
Parameters
|
7693
7693
|
----------
|
7694
7694
|
key: std::string const &
|
7695
7695
|
|
7696
7696
|
"""
|
7697
|
-
return _VehiclesSwig.
|
7697
|
+
return _VehiclesSwig.Vehicles_Tracks_IntertialRoadWheel_getDynamic(self, key)
|
7698
7698
|
|
7699
7699
|
def callDynamic(self, key, args):
|
7700
7700
|
r"""
|
7701
|
-
callDynamic(
|
7701
|
+
callDynamic(Vehicles_Tracks_IntertialRoadWheel self, std::string const & key, AnyVector args) -> Any
|
7702
7702
|
|
7703
7703
|
Parameters
|
7704
7704
|
----------
|
@@ -7706,66 +7706,66 @@ class Tracks_IntertialRoadWheel(Tracks_RoadWheel):
|
|
7706
7706
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
7707
7707
|
|
7708
7708
|
"""
|
7709
|
-
return _VehiclesSwig.
|
7709
|
+
return _VehiclesSwig.Vehicles_Tracks_IntertialRoadWheel_callDynamic(self, key, args)
|
7710
7710
|
|
7711
7711
|
def extractObjectFieldsTo(self, output):
|
7712
7712
|
r"""
|
7713
|
-
extractObjectFieldsTo(
|
7713
|
+
extractObjectFieldsTo(Vehicles_Tracks_IntertialRoadWheel self, ObjectVector output)
|
7714
7714
|
|
7715
7715
|
Parameters
|
7716
7716
|
----------
|
7717
7717
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
7718
7718
|
|
7719
7719
|
"""
|
7720
|
-
return _VehiclesSwig.
|
7720
|
+
return _VehiclesSwig.Vehicles_Tracks_IntertialRoadWheel_extractObjectFieldsTo(self, output)
|
7721
7721
|
|
7722
7722
|
def extractEntriesTo(self, output):
|
7723
7723
|
r"""
|
7724
|
-
extractEntriesTo(
|
7724
|
+
extractEntriesTo(Vehicles_Tracks_IntertialRoadWheel self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
7725
7725
|
|
7726
7726
|
Parameters
|
7727
7727
|
----------
|
7728
7728
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
7729
7729
|
|
7730
7730
|
"""
|
7731
|
-
return _VehiclesSwig.
|
7731
|
+
return _VehiclesSwig.Vehicles_Tracks_IntertialRoadWheel_extractEntriesTo(self, output)
|
7732
7732
|
|
7733
7733
|
def triggerOnInit(self, context):
|
7734
7734
|
r"""
|
7735
|
-
triggerOnInit(
|
7735
|
+
triggerOnInit(Vehicles_Tracks_IntertialRoadWheel self, openplx::RuntimeContext const & context)
|
7736
7736
|
|
7737
7737
|
Parameters
|
7738
7738
|
----------
|
7739
7739
|
context: openplx::RuntimeContext const &
|
7740
7740
|
|
7741
7741
|
"""
|
7742
|
-
return _VehiclesSwig.
|
7743
|
-
__swig_destroy__ = _VehiclesSwig.
|
7742
|
+
return _VehiclesSwig.Vehicles_Tracks_IntertialRoadWheel_triggerOnInit(self, context)
|
7743
|
+
__swig_destroy__ = _VehiclesSwig.delete_Vehicles_Tracks_IntertialRoadWheel
|
7744
7744
|
|
7745
|
-
# Register
|
7746
|
-
_VehiclesSwig.
|
7745
|
+
# Register Vehicles_Tracks_IntertialRoadWheel in _VehiclesSwig:
|
7746
|
+
_VehiclesSwig.Vehicles_Tracks_IntertialRoadWheel_swigregister(Vehicles_Tracks_IntertialRoadWheel)
|
7747
7747
|
|
7748
|
-
class
|
7748
|
+
class Vehicles_Tracks_CylindricalRoadWheel(Vehicles_Tracks_IntertialRoadWheel):
|
7749
7749
|
r"""Proxy of C++ openplx::Vehicles::Tracks::CylindricalRoadWheel class."""
|
7750
7750
|
|
7751
7751
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
7752
7752
|
__repr__ = _swig_repr
|
7753
7753
|
|
7754
7754
|
def __init__(self):
|
7755
|
-
r"""__init__(
|
7756
|
-
_VehiclesSwig.
|
7755
|
+
r"""__init__(Vehicles_Tracks_CylindricalRoadWheel self) -> Vehicles_Tracks_CylindricalRoadWheel"""
|
7756
|
+
_VehiclesSwig.Vehicles_Tracks_CylindricalRoadWheel_swiginit(self, _VehiclesSwig.new_Vehicles_Tracks_CylindricalRoadWheel())
|
7757
7757
|
|
7758
7758
|
def radius(self):
|
7759
|
-
r"""radius(
|
7760
|
-
return _VehiclesSwig.
|
7759
|
+
r"""radius(Vehicles_Tracks_CylindricalRoadWheel self) -> double"""
|
7760
|
+
return _VehiclesSwig.Vehicles_Tracks_CylindricalRoadWheel_radius(self)
|
7761
7761
|
|
7762
7762
|
def width(self):
|
7763
|
-
r"""width(
|
7764
|
-
return _VehiclesSwig.
|
7763
|
+
r"""width(Vehicles_Tracks_CylindricalRoadWheel self) -> double"""
|
7764
|
+
return _VehiclesSwig.Vehicles_Tracks_CylindricalRoadWheel_width(self)
|
7765
7765
|
|
7766
7766
|
def setDynamic(self, key, value):
|
7767
7767
|
r"""
|
7768
|
-
setDynamic(
|
7768
|
+
setDynamic(Vehicles_Tracks_CylindricalRoadWheel self, std::string const & key, Any value)
|
7769
7769
|
|
7770
7770
|
Parameters
|
7771
7771
|
----------
|
@@ -7773,22 +7773,22 @@ class Tracks_CylindricalRoadWheel(Tracks_IntertialRoadWheel):
|
|
7773
7773
|
value: openplx::Core::Any &&
|
7774
7774
|
|
7775
7775
|
"""
|
7776
|
-
return _VehiclesSwig.
|
7776
|
+
return _VehiclesSwig.Vehicles_Tracks_CylindricalRoadWheel_setDynamic(self, key, value)
|
7777
7777
|
|
7778
7778
|
def getDynamic(self, key):
|
7779
7779
|
r"""
|
7780
|
-
getDynamic(
|
7780
|
+
getDynamic(Vehicles_Tracks_CylindricalRoadWheel self, std::string const & key) -> Any
|
7781
7781
|
|
7782
7782
|
Parameters
|
7783
7783
|
----------
|
7784
7784
|
key: std::string const &
|
7785
7785
|
|
7786
7786
|
"""
|
7787
|
-
return _VehiclesSwig.
|
7787
|
+
return _VehiclesSwig.Vehicles_Tracks_CylindricalRoadWheel_getDynamic(self, key)
|
7788
7788
|
|
7789
7789
|
def callDynamic(self, key, args):
|
7790
7790
|
r"""
|
7791
|
-
callDynamic(
|
7791
|
+
callDynamic(Vehicles_Tracks_CylindricalRoadWheel self, std::string const & key, AnyVector args) -> Any
|
7792
7792
|
|
7793
7793
|
Parameters
|
7794
7794
|
----------
|
@@ -7796,58 +7796,58 @@ class Tracks_CylindricalRoadWheel(Tracks_IntertialRoadWheel):
|
|
7796
7796
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
7797
7797
|
|
7798
7798
|
"""
|
7799
|
-
return _VehiclesSwig.
|
7799
|
+
return _VehiclesSwig.Vehicles_Tracks_CylindricalRoadWheel_callDynamic(self, key, args)
|
7800
7800
|
|
7801
7801
|
def extractObjectFieldsTo(self, output):
|
7802
7802
|
r"""
|
7803
|
-
extractObjectFieldsTo(
|
7803
|
+
extractObjectFieldsTo(Vehicles_Tracks_CylindricalRoadWheel self, ObjectVector output)
|
7804
7804
|
|
7805
7805
|
Parameters
|
7806
7806
|
----------
|
7807
7807
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
7808
7808
|
|
7809
7809
|
"""
|
7810
|
-
return _VehiclesSwig.
|
7810
|
+
return _VehiclesSwig.Vehicles_Tracks_CylindricalRoadWheel_extractObjectFieldsTo(self, output)
|
7811
7811
|
|
7812
7812
|
def extractEntriesTo(self, output):
|
7813
7813
|
r"""
|
7814
|
-
extractEntriesTo(
|
7814
|
+
extractEntriesTo(Vehicles_Tracks_CylindricalRoadWheel self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
7815
7815
|
|
7816
7816
|
Parameters
|
7817
7817
|
----------
|
7818
7818
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
7819
7819
|
|
7820
7820
|
"""
|
7821
|
-
return _VehiclesSwig.
|
7821
|
+
return _VehiclesSwig.Vehicles_Tracks_CylindricalRoadWheel_extractEntriesTo(self, output)
|
7822
7822
|
|
7823
7823
|
def triggerOnInit(self, context):
|
7824
7824
|
r"""
|
7825
|
-
triggerOnInit(
|
7825
|
+
triggerOnInit(Vehicles_Tracks_CylindricalRoadWheel self, openplx::RuntimeContext const & context)
|
7826
7826
|
|
7827
7827
|
Parameters
|
7828
7828
|
----------
|
7829
7829
|
context: openplx::RuntimeContext const &
|
7830
7830
|
|
7831
7831
|
"""
|
7832
|
-
return _VehiclesSwig.
|
7833
|
-
__swig_destroy__ = _VehiclesSwig.
|
7832
|
+
return _VehiclesSwig.Vehicles_Tracks_CylindricalRoadWheel_triggerOnInit(self, context)
|
7833
|
+
__swig_destroy__ = _VehiclesSwig.delete_Vehicles_Tracks_CylindricalRoadWheel
|
7834
7834
|
|
7835
|
-
# Register
|
7836
|
-
_VehiclesSwig.
|
7835
|
+
# Register Vehicles_Tracks_CylindricalRoadWheel in _VehiclesSwig:
|
7836
|
+
_VehiclesSwig.Vehicles_Tracks_CylindricalRoadWheel_swigregister(Vehicles_Tracks_CylindricalRoadWheel)
|
7837
7837
|
|
7838
|
-
class
|
7838
|
+
class Vehicles_Tracks_CylindricalIdler(Vehicles_Tracks_CylindricalRoadWheel):
|
7839
7839
|
r"""Proxy of C++ openplx::Vehicles::Tracks::CylindricalIdler class."""
|
7840
7840
|
|
7841
7841
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
7842
7842
|
__repr__ = _swig_repr
|
7843
7843
|
|
7844
7844
|
def __init__(self):
|
7845
|
-
r"""__init__(
|
7846
|
-
_VehiclesSwig.
|
7845
|
+
r"""__init__(Vehicles_Tracks_CylindricalIdler self) -> Vehicles_Tracks_CylindricalIdler"""
|
7846
|
+
_VehiclesSwig.Vehicles_Tracks_CylindricalIdler_swiginit(self, _VehiclesSwig.new_Vehicles_Tracks_CylindricalIdler())
|
7847
7847
|
|
7848
7848
|
def setDynamic(self, key, value):
|
7849
7849
|
r"""
|
7850
|
-
setDynamic(
|
7850
|
+
setDynamic(Vehicles_Tracks_CylindricalIdler self, std::string const & key, Any value)
|
7851
7851
|
|
7852
7852
|
Parameters
|
7853
7853
|
----------
|
@@ -7855,22 +7855,22 @@ class Tracks_CylindricalIdler(Tracks_CylindricalRoadWheel):
|
|
7855
7855
|
value: openplx::Core::Any &&
|
7856
7856
|
|
7857
7857
|
"""
|
7858
|
-
return _VehiclesSwig.
|
7858
|
+
return _VehiclesSwig.Vehicles_Tracks_CylindricalIdler_setDynamic(self, key, value)
|
7859
7859
|
|
7860
7860
|
def getDynamic(self, key):
|
7861
7861
|
r"""
|
7862
|
-
getDynamic(
|
7862
|
+
getDynamic(Vehicles_Tracks_CylindricalIdler self, std::string const & key) -> Any
|
7863
7863
|
|
7864
7864
|
Parameters
|
7865
7865
|
----------
|
7866
7866
|
key: std::string const &
|
7867
7867
|
|
7868
7868
|
"""
|
7869
|
-
return _VehiclesSwig.
|
7869
|
+
return _VehiclesSwig.Vehicles_Tracks_CylindricalIdler_getDynamic(self, key)
|
7870
7870
|
|
7871
7871
|
def callDynamic(self, key, args):
|
7872
7872
|
r"""
|
7873
|
-
callDynamic(
|
7873
|
+
callDynamic(Vehicles_Tracks_CylindricalIdler self, std::string const & key, AnyVector args) -> Any
|
7874
7874
|
|
7875
7875
|
Parameters
|
7876
7876
|
----------
|
@@ -7878,58 +7878,58 @@ class Tracks_CylindricalIdler(Tracks_CylindricalRoadWheel):
|
|
7878
7878
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
7879
7879
|
|
7880
7880
|
"""
|
7881
|
-
return _VehiclesSwig.
|
7881
|
+
return _VehiclesSwig.Vehicles_Tracks_CylindricalIdler_callDynamic(self, key, args)
|
7882
7882
|
|
7883
7883
|
def extractObjectFieldsTo(self, output):
|
7884
7884
|
r"""
|
7885
|
-
extractObjectFieldsTo(
|
7885
|
+
extractObjectFieldsTo(Vehicles_Tracks_CylindricalIdler self, ObjectVector output)
|
7886
7886
|
|
7887
7887
|
Parameters
|
7888
7888
|
----------
|
7889
7889
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
7890
7890
|
|
7891
7891
|
"""
|
7892
|
-
return _VehiclesSwig.
|
7892
|
+
return _VehiclesSwig.Vehicles_Tracks_CylindricalIdler_extractObjectFieldsTo(self, output)
|
7893
7893
|
|
7894
7894
|
def extractEntriesTo(self, output):
|
7895
7895
|
r"""
|
7896
|
-
extractEntriesTo(
|
7896
|
+
extractEntriesTo(Vehicles_Tracks_CylindricalIdler self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
7897
7897
|
|
7898
7898
|
Parameters
|
7899
7899
|
----------
|
7900
7900
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
7901
7901
|
|
7902
7902
|
"""
|
7903
|
-
return _VehiclesSwig.
|
7903
|
+
return _VehiclesSwig.Vehicles_Tracks_CylindricalIdler_extractEntriesTo(self, output)
|
7904
7904
|
|
7905
7905
|
def triggerOnInit(self, context):
|
7906
7906
|
r"""
|
7907
|
-
triggerOnInit(
|
7907
|
+
triggerOnInit(Vehicles_Tracks_CylindricalIdler self, openplx::RuntimeContext const & context)
|
7908
7908
|
|
7909
7909
|
Parameters
|
7910
7910
|
----------
|
7911
7911
|
context: openplx::RuntimeContext const &
|
7912
7912
|
|
7913
7913
|
"""
|
7914
|
-
return _VehiclesSwig.
|
7915
|
-
__swig_destroy__ = _VehiclesSwig.
|
7914
|
+
return _VehiclesSwig.Vehicles_Tracks_CylindricalIdler_triggerOnInit(self, context)
|
7915
|
+
__swig_destroy__ = _VehiclesSwig.delete_Vehicles_Tracks_CylindricalIdler
|
7916
7916
|
|
7917
|
-
# Register
|
7918
|
-
_VehiclesSwig.
|
7917
|
+
# Register Vehicles_Tracks_CylindricalIdler in _VehiclesSwig:
|
7918
|
+
_VehiclesSwig.Vehicles_Tracks_CylindricalIdler_swigregister(Vehicles_Tracks_CylindricalIdler)
|
7919
7919
|
|
7920
|
-
class
|
7920
|
+
class Vehicles_Tracks_CylindricalRoller(Vehicles_Tracks_CylindricalRoadWheel):
|
7921
7921
|
r"""Proxy of C++ openplx::Vehicles::Tracks::CylindricalRoller class."""
|
7922
7922
|
|
7923
7923
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
7924
7924
|
__repr__ = _swig_repr
|
7925
7925
|
|
7926
7926
|
def __init__(self):
|
7927
|
-
r"""__init__(
|
7928
|
-
_VehiclesSwig.
|
7927
|
+
r"""__init__(Vehicles_Tracks_CylindricalRoller self) -> Vehicles_Tracks_CylindricalRoller"""
|
7928
|
+
_VehiclesSwig.Vehicles_Tracks_CylindricalRoller_swiginit(self, _VehiclesSwig.new_Vehicles_Tracks_CylindricalRoller())
|
7929
7929
|
|
7930
7930
|
def setDynamic(self, key, value):
|
7931
7931
|
r"""
|
7932
|
-
setDynamic(
|
7932
|
+
setDynamic(Vehicles_Tracks_CylindricalRoller self, std::string const & key, Any value)
|
7933
7933
|
|
7934
7934
|
Parameters
|
7935
7935
|
----------
|
@@ -7937,22 +7937,22 @@ class Tracks_CylindricalRoller(Tracks_CylindricalRoadWheel):
|
|
7937
7937
|
value: openplx::Core::Any &&
|
7938
7938
|
|
7939
7939
|
"""
|
7940
|
-
return _VehiclesSwig.
|
7940
|
+
return _VehiclesSwig.Vehicles_Tracks_CylindricalRoller_setDynamic(self, key, value)
|
7941
7941
|
|
7942
7942
|
def getDynamic(self, key):
|
7943
7943
|
r"""
|
7944
|
-
getDynamic(
|
7944
|
+
getDynamic(Vehicles_Tracks_CylindricalRoller self, std::string const & key) -> Any
|
7945
7945
|
|
7946
7946
|
Parameters
|
7947
7947
|
----------
|
7948
7948
|
key: std::string const &
|
7949
7949
|
|
7950
7950
|
"""
|
7951
|
-
return _VehiclesSwig.
|
7951
|
+
return _VehiclesSwig.Vehicles_Tracks_CylindricalRoller_getDynamic(self, key)
|
7952
7952
|
|
7953
7953
|
def callDynamic(self, key, args):
|
7954
7954
|
r"""
|
7955
|
-
callDynamic(
|
7955
|
+
callDynamic(Vehicles_Tracks_CylindricalRoller self, std::string const & key, AnyVector args) -> Any
|
7956
7956
|
|
7957
7957
|
Parameters
|
7958
7958
|
----------
|
@@ -7960,58 +7960,58 @@ class Tracks_CylindricalRoller(Tracks_CylindricalRoadWheel):
|
|
7960
7960
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
7961
7961
|
|
7962
7962
|
"""
|
7963
|
-
return _VehiclesSwig.
|
7963
|
+
return _VehiclesSwig.Vehicles_Tracks_CylindricalRoller_callDynamic(self, key, args)
|
7964
7964
|
|
7965
7965
|
def extractObjectFieldsTo(self, output):
|
7966
7966
|
r"""
|
7967
|
-
extractObjectFieldsTo(
|
7967
|
+
extractObjectFieldsTo(Vehicles_Tracks_CylindricalRoller self, ObjectVector output)
|
7968
7968
|
|
7969
7969
|
Parameters
|
7970
7970
|
----------
|
7971
7971
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
7972
7972
|
|
7973
7973
|
"""
|
7974
|
-
return _VehiclesSwig.
|
7974
|
+
return _VehiclesSwig.Vehicles_Tracks_CylindricalRoller_extractObjectFieldsTo(self, output)
|
7975
7975
|
|
7976
7976
|
def extractEntriesTo(self, output):
|
7977
7977
|
r"""
|
7978
|
-
extractEntriesTo(
|
7978
|
+
extractEntriesTo(Vehicles_Tracks_CylindricalRoller self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
7979
7979
|
|
7980
7980
|
Parameters
|
7981
7981
|
----------
|
7982
7982
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
7983
7983
|
|
7984
7984
|
"""
|
7985
|
-
return _VehiclesSwig.
|
7985
|
+
return _VehiclesSwig.Vehicles_Tracks_CylindricalRoller_extractEntriesTo(self, output)
|
7986
7986
|
|
7987
7987
|
def triggerOnInit(self, context):
|
7988
7988
|
r"""
|
7989
|
-
triggerOnInit(
|
7989
|
+
triggerOnInit(Vehicles_Tracks_CylindricalRoller self, openplx::RuntimeContext const & context)
|
7990
7990
|
|
7991
7991
|
Parameters
|
7992
7992
|
----------
|
7993
7993
|
context: openplx::RuntimeContext const &
|
7994
7994
|
|
7995
7995
|
"""
|
7996
|
-
return _VehiclesSwig.
|
7997
|
-
__swig_destroy__ = _VehiclesSwig.
|
7996
|
+
return _VehiclesSwig.Vehicles_Tracks_CylindricalRoller_triggerOnInit(self, context)
|
7997
|
+
__swig_destroy__ = _VehiclesSwig.delete_Vehicles_Tracks_CylindricalRoller
|
7998
7998
|
|
7999
|
-
# Register
|
8000
|
-
_VehiclesSwig.
|
7999
|
+
# Register Vehicles_Tracks_CylindricalRoller in _VehiclesSwig:
|
8000
|
+
_VehiclesSwig.Vehicles_Tracks_CylindricalRoller_swigregister(Vehicles_Tracks_CylindricalRoller)
|
8001
8001
|
|
8002
|
-
class
|
8002
|
+
class Vehicles_Tracks_CylindricalSprocket(Vehicles_Tracks_CylindricalRoadWheel):
|
8003
8003
|
r"""Proxy of C++ openplx::Vehicles::Tracks::CylindricalSprocket class."""
|
8004
8004
|
|
8005
8005
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
8006
8006
|
__repr__ = _swig_repr
|
8007
8007
|
|
8008
8008
|
def __init__(self):
|
8009
|
-
r"""__init__(
|
8010
|
-
_VehiclesSwig.
|
8009
|
+
r"""__init__(Vehicles_Tracks_CylindricalSprocket self) -> Vehicles_Tracks_CylindricalSprocket"""
|
8010
|
+
_VehiclesSwig.Vehicles_Tracks_CylindricalSprocket_swiginit(self, _VehiclesSwig.new_Vehicles_Tracks_CylindricalSprocket())
|
8011
8011
|
|
8012
8012
|
def setDynamic(self, key, value):
|
8013
8013
|
r"""
|
8014
|
-
setDynamic(
|
8014
|
+
setDynamic(Vehicles_Tracks_CylindricalSprocket self, std::string const & key, Any value)
|
8015
8015
|
|
8016
8016
|
Parameters
|
8017
8017
|
----------
|
@@ -8019,22 +8019,22 @@ class Tracks_CylindricalSprocket(Tracks_CylindricalRoadWheel):
|
|
8019
8019
|
value: openplx::Core::Any &&
|
8020
8020
|
|
8021
8021
|
"""
|
8022
|
-
return _VehiclesSwig.
|
8022
|
+
return _VehiclesSwig.Vehicles_Tracks_CylindricalSprocket_setDynamic(self, key, value)
|
8023
8023
|
|
8024
8024
|
def getDynamic(self, key):
|
8025
8025
|
r"""
|
8026
|
-
getDynamic(
|
8026
|
+
getDynamic(Vehicles_Tracks_CylindricalSprocket self, std::string const & key) -> Any
|
8027
8027
|
|
8028
8028
|
Parameters
|
8029
8029
|
----------
|
8030
8030
|
key: std::string const &
|
8031
8031
|
|
8032
8032
|
"""
|
8033
|
-
return _VehiclesSwig.
|
8033
|
+
return _VehiclesSwig.Vehicles_Tracks_CylindricalSprocket_getDynamic(self, key)
|
8034
8034
|
|
8035
8035
|
def callDynamic(self, key, args):
|
8036
8036
|
r"""
|
8037
|
-
callDynamic(
|
8037
|
+
callDynamic(Vehicles_Tracks_CylindricalSprocket self, std::string const & key, AnyVector args) -> Any
|
8038
8038
|
|
8039
8039
|
Parameters
|
8040
8040
|
----------
|
@@ -8042,66 +8042,66 @@ class Tracks_CylindricalSprocket(Tracks_CylindricalRoadWheel):
|
|
8042
8042
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
8043
8043
|
|
8044
8044
|
"""
|
8045
|
-
return _VehiclesSwig.
|
8045
|
+
return _VehiclesSwig.Vehicles_Tracks_CylindricalSprocket_callDynamic(self, key, args)
|
8046
8046
|
|
8047
8047
|
def extractObjectFieldsTo(self, output):
|
8048
8048
|
r"""
|
8049
|
-
extractObjectFieldsTo(
|
8049
|
+
extractObjectFieldsTo(Vehicles_Tracks_CylindricalSprocket self, ObjectVector output)
|
8050
8050
|
|
8051
8051
|
Parameters
|
8052
8052
|
----------
|
8053
8053
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
8054
8054
|
|
8055
8055
|
"""
|
8056
|
-
return _VehiclesSwig.
|
8056
|
+
return _VehiclesSwig.Vehicles_Tracks_CylindricalSprocket_extractObjectFieldsTo(self, output)
|
8057
8057
|
|
8058
8058
|
def extractEntriesTo(self, output):
|
8059
8059
|
r"""
|
8060
|
-
extractEntriesTo(
|
8060
|
+
extractEntriesTo(Vehicles_Tracks_CylindricalSprocket self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
8061
8061
|
|
8062
8062
|
Parameters
|
8063
8063
|
----------
|
8064
8064
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
8065
8065
|
|
8066
8066
|
"""
|
8067
|
-
return _VehiclesSwig.
|
8067
|
+
return _VehiclesSwig.Vehicles_Tracks_CylindricalSprocket_extractEntriesTo(self, output)
|
8068
8068
|
|
8069
8069
|
def triggerOnInit(self, context):
|
8070
8070
|
r"""
|
8071
|
-
triggerOnInit(
|
8071
|
+
triggerOnInit(Vehicles_Tracks_CylindricalSprocket self, openplx::RuntimeContext const & context)
|
8072
8072
|
|
8073
8073
|
Parameters
|
8074
8074
|
----------
|
8075
8075
|
context: openplx::RuntimeContext const &
|
8076
8076
|
|
8077
8077
|
"""
|
8078
|
-
return _VehiclesSwig.
|
8079
|
-
__swig_destroy__ = _VehiclesSwig.
|
8078
|
+
return _VehiclesSwig.Vehicles_Tracks_CylindricalSprocket_triggerOnInit(self, context)
|
8079
|
+
__swig_destroy__ = _VehiclesSwig.delete_Vehicles_Tracks_CylindricalSprocket
|
8080
8080
|
|
8081
|
-
# Register
|
8082
|
-
_VehiclesSwig.
|
8081
|
+
# Register Vehicles_Tracks_CylindricalSprocket in _VehiclesSwig:
|
8082
|
+
_VehiclesSwig.Vehicles_Tracks_CylindricalSprocket_swigregister(Vehicles_Tracks_CylindricalSprocket)
|
8083
8083
|
|
8084
|
-
class
|
8084
|
+
class Vehicles_Tracks_DiscretePulseVariation(Vehicles_Tracks_CyclicVariation):
|
8085
8085
|
r"""Proxy of C++ openplx::Vehicles::Tracks::DiscretePulseVariation class."""
|
8086
8086
|
|
8087
8087
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
8088
8088
|
__repr__ = _swig_repr
|
8089
8089
|
|
8090
8090
|
def __init__(self):
|
8091
|
-
r"""__init__(
|
8092
|
-
_VehiclesSwig.
|
8091
|
+
r"""__init__(Vehicles_Tracks_DiscretePulseVariation self) -> Vehicles_Tracks_DiscretePulseVariation"""
|
8092
|
+
_VehiclesSwig.Vehicles_Tracks_DiscretePulseVariation_swiginit(self, _VehiclesSwig.new_Vehicles_Tracks_DiscretePulseVariation())
|
8093
8093
|
|
8094
8094
|
def additional_amplitude(self):
|
8095
|
-
r"""additional_amplitude(
|
8096
|
-
return _VehiclesSwig.
|
8095
|
+
r"""additional_amplitude(Vehicles_Tracks_DiscretePulseVariation self) -> double"""
|
8096
|
+
return _VehiclesSwig.Vehicles_Tracks_DiscretePulseVariation_additional_amplitude(self)
|
8097
8097
|
|
8098
8098
|
def discrete_period(self):
|
8099
|
-
r"""discrete_period(
|
8100
|
-
return _VehiclesSwig.
|
8099
|
+
r"""discrete_period(Vehicles_Tracks_DiscretePulseVariation self) -> int64_t"""
|
8100
|
+
return _VehiclesSwig.Vehicles_Tracks_DiscretePulseVariation_discrete_period(self)
|
8101
8101
|
|
8102
8102
|
def setDynamic(self, key, value):
|
8103
8103
|
r"""
|
8104
|
-
setDynamic(
|
8104
|
+
setDynamic(Vehicles_Tracks_DiscretePulseVariation self, std::string const & key, Any value)
|
8105
8105
|
|
8106
8106
|
Parameters
|
8107
8107
|
----------
|
@@ -8109,22 +8109,22 @@ class Tracks_DiscretePulseVariation(Tracks_CyclicVariation):
|
|
8109
8109
|
value: openplx::Core::Any &&
|
8110
8110
|
|
8111
8111
|
"""
|
8112
|
-
return _VehiclesSwig.
|
8112
|
+
return _VehiclesSwig.Vehicles_Tracks_DiscretePulseVariation_setDynamic(self, key, value)
|
8113
8113
|
|
8114
8114
|
def getDynamic(self, key):
|
8115
8115
|
r"""
|
8116
|
-
getDynamic(
|
8116
|
+
getDynamic(Vehicles_Tracks_DiscretePulseVariation self, std::string const & key) -> Any
|
8117
8117
|
|
8118
8118
|
Parameters
|
8119
8119
|
----------
|
8120
8120
|
key: std::string const &
|
8121
8121
|
|
8122
8122
|
"""
|
8123
|
-
return _VehiclesSwig.
|
8123
|
+
return _VehiclesSwig.Vehicles_Tracks_DiscretePulseVariation_getDynamic(self, key)
|
8124
8124
|
|
8125
8125
|
def callDynamic(self, key, args):
|
8126
8126
|
r"""
|
8127
|
-
callDynamic(
|
8127
|
+
callDynamic(Vehicles_Tracks_DiscretePulseVariation self, std::string const & key, AnyVector args) -> Any
|
8128
8128
|
|
8129
8129
|
Parameters
|
8130
8130
|
----------
|
@@ -8132,66 +8132,66 @@ class Tracks_DiscretePulseVariation(Tracks_CyclicVariation):
|
|
8132
8132
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
8133
8133
|
|
8134
8134
|
"""
|
8135
|
-
return _VehiclesSwig.
|
8135
|
+
return _VehiclesSwig.Vehicles_Tracks_DiscretePulseVariation_callDynamic(self, key, args)
|
8136
8136
|
|
8137
8137
|
def extractObjectFieldsTo(self, output):
|
8138
8138
|
r"""
|
8139
|
-
extractObjectFieldsTo(
|
8139
|
+
extractObjectFieldsTo(Vehicles_Tracks_DiscretePulseVariation self, ObjectVector output)
|
8140
8140
|
|
8141
8141
|
Parameters
|
8142
8142
|
----------
|
8143
8143
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
8144
8144
|
|
8145
8145
|
"""
|
8146
|
-
return _VehiclesSwig.
|
8146
|
+
return _VehiclesSwig.Vehicles_Tracks_DiscretePulseVariation_extractObjectFieldsTo(self, output)
|
8147
8147
|
|
8148
8148
|
def extractEntriesTo(self, output):
|
8149
8149
|
r"""
|
8150
|
-
extractEntriesTo(
|
8150
|
+
extractEntriesTo(Vehicles_Tracks_DiscretePulseVariation self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
8151
8151
|
|
8152
8152
|
Parameters
|
8153
8153
|
----------
|
8154
8154
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
8155
8155
|
|
8156
8156
|
"""
|
8157
|
-
return _VehiclesSwig.
|
8157
|
+
return _VehiclesSwig.Vehicles_Tracks_DiscretePulseVariation_extractEntriesTo(self, output)
|
8158
8158
|
|
8159
8159
|
def triggerOnInit(self, context):
|
8160
8160
|
r"""
|
8161
|
-
triggerOnInit(
|
8161
|
+
triggerOnInit(Vehicles_Tracks_DiscretePulseVariation self, openplx::RuntimeContext const & context)
|
8162
8162
|
|
8163
8163
|
Parameters
|
8164
8164
|
----------
|
8165
8165
|
context: openplx::RuntimeContext const &
|
8166
8166
|
|
8167
8167
|
"""
|
8168
|
-
return _VehiclesSwig.
|
8169
|
-
__swig_destroy__ = _VehiclesSwig.
|
8168
|
+
return _VehiclesSwig.Vehicles_Tracks_DiscretePulseVariation_triggerOnInit(self, context)
|
8169
|
+
__swig_destroy__ = _VehiclesSwig.delete_Vehicles_Tracks_DiscretePulseVariation
|
8170
8170
|
|
8171
|
-
# Register
|
8172
|
-
_VehiclesSwig.
|
8171
|
+
# Register Vehicles_Tracks_DiscretePulseVariation in _VehiclesSwig:
|
8172
|
+
_VehiclesSwig.Vehicles_Tracks_DiscretePulseVariation_swigregister(Vehicles_Tracks_DiscretePulseVariation)
|
8173
8173
|
|
8174
|
-
class
|
8174
|
+
class Vehicles_Tracks_FixedLinkCountBelt(Vehicles_Tracks_Belt):
|
8175
8175
|
r"""Proxy of C++ openplx::Vehicles::Tracks::FixedLinkCountBelt class."""
|
8176
8176
|
|
8177
8177
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
8178
8178
|
__repr__ = _swig_repr
|
8179
8179
|
|
8180
8180
|
def __init__(self):
|
8181
|
-
r"""__init__(
|
8182
|
-
_VehiclesSwig.
|
8181
|
+
r"""__init__(Vehicles_Tracks_FixedLinkCountBelt self) -> Vehicles_Tracks_FixedLinkCountBelt"""
|
8182
|
+
_VehiclesSwig.Vehicles_Tracks_FixedLinkCountBelt_swiginit(self, _VehiclesSwig.new_Vehicles_Tracks_FixedLinkCountBelt())
|
8183
8183
|
|
8184
8184
|
def link_count(self):
|
8185
|
-
r"""link_count(
|
8186
|
-
return _VehiclesSwig.
|
8185
|
+
r"""link_count(Vehicles_Tracks_FixedLinkCountBelt self) -> int64_t"""
|
8186
|
+
return _VehiclesSwig.Vehicles_Tracks_FixedLinkCountBelt_link_count(self)
|
8187
8187
|
|
8188
8188
|
def link_description(self):
|
8189
|
-
r"""link_description(
|
8190
|
-
return _VehiclesSwig.
|
8189
|
+
r"""link_description(Vehicles_Tracks_FixedLinkCountBelt self) -> std::shared_ptr< openplx::Vehicles::Tracks::ContactGeometryLinkDescription >"""
|
8190
|
+
return _VehiclesSwig.Vehicles_Tracks_FixedLinkCountBelt_link_description(self)
|
8191
8191
|
|
8192
8192
|
def setDynamic(self, key, value):
|
8193
8193
|
r"""
|
8194
|
-
setDynamic(
|
8194
|
+
setDynamic(Vehicles_Tracks_FixedLinkCountBelt self, std::string const & key, Any value)
|
8195
8195
|
|
8196
8196
|
Parameters
|
8197
8197
|
----------
|
@@ -8199,22 +8199,22 @@ class Tracks_FixedLinkCountBelt(Tracks_Belt):
|
|
8199
8199
|
value: openplx::Core::Any &&
|
8200
8200
|
|
8201
8201
|
"""
|
8202
|
-
return _VehiclesSwig.
|
8202
|
+
return _VehiclesSwig.Vehicles_Tracks_FixedLinkCountBelt_setDynamic(self, key, value)
|
8203
8203
|
|
8204
8204
|
def getDynamic(self, key):
|
8205
8205
|
r"""
|
8206
|
-
getDynamic(
|
8206
|
+
getDynamic(Vehicles_Tracks_FixedLinkCountBelt self, std::string const & key) -> Any
|
8207
8207
|
|
8208
8208
|
Parameters
|
8209
8209
|
----------
|
8210
8210
|
key: std::string const &
|
8211
8211
|
|
8212
8212
|
"""
|
8213
|
-
return _VehiclesSwig.
|
8213
|
+
return _VehiclesSwig.Vehicles_Tracks_FixedLinkCountBelt_getDynamic(self, key)
|
8214
8214
|
|
8215
8215
|
def callDynamic(self, key, args):
|
8216
8216
|
r"""
|
8217
|
-
callDynamic(
|
8217
|
+
callDynamic(Vehicles_Tracks_FixedLinkCountBelt self, std::string const & key, AnyVector args) -> Any
|
8218
8218
|
|
8219
8219
|
Parameters
|
8220
8220
|
----------
|
@@ -8222,62 +8222,62 @@ class Tracks_FixedLinkCountBelt(Tracks_Belt):
|
|
8222
8222
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
8223
8223
|
|
8224
8224
|
"""
|
8225
|
-
return _VehiclesSwig.
|
8225
|
+
return _VehiclesSwig.Vehicles_Tracks_FixedLinkCountBelt_callDynamic(self, key, args)
|
8226
8226
|
|
8227
8227
|
def extractObjectFieldsTo(self, output):
|
8228
8228
|
r"""
|
8229
|
-
extractObjectFieldsTo(
|
8229
|
+
extractObjectFieldsTo(Vehicles_Tracks_FixedLinkCountBelt self, ObjectVector output)
|
8230
8230
|
|
8231
8231
|
Parameters
|
8232
8232
|
----------
|
8233
8233
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
8234
8234
|
|
8235
8235
|
"""
|
8236
|
-
return _VehiclesSwig.
|
8236
|
+
return _VehiclesSwig.Vehicles_Tracks_FixedLinkCountBelt_extractObjectFieldsTo(self, output)
|
8237
8237
|
|
8238
8238
|
def extractEntriesTo(self, output):
|
8239
8239
|
r"""
|
8240
|
-
extractEntriesTo(
|
8240
|
+
extractEntriesTo(Vehicles_Tracks_FixedLinkCountBelt self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
8241
8241
|
|
8242
8242
|
Parameters
|
8243
8243
|
----------
|
8244
8244
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
8245
8245
|
|
8246
8246
|
"""
|
8247
|
-
return _VehiclesSwig.
|
8247
|
+
return _VehiclesSwig.Vehicles_Tracks_FixedLinkCountBelt_extractEntriesTo(self, output)
|
8248
8248
|
|
8249
8249
|
def triggerOnInit(self, context):
|
8250
8250
|
r"""
|
8251
|
-
triggerOnInit(
|
8251
|
+
triggerOnInit(Vehicles_Tracks_FixedLinkCountBelt self, openplx::RuntimeContext const & context)
|
8252
8252
|
|
8253
8253
|
Parameters
|
8254
8254
|
----------
|
8255
8255
|
context: openplx::RuntimeContext const &
|
8256
8256
|
|
8257
8257
|
"""
|
8258
|
-
return _VehiclesSwig.
|
8259
|
-
__swig_destroy__ = _VehiclesSwig.
|
8258
|
+
return _VehiclesSwig.Vehicles_Tracks_FixedLinkCountBelt_triggerOnInit(self, context)
|
8259
|
+
__swig_destroy__ = _VehiclesSwig.delete_Vehicles_Tracks_FixedLinkCountBelt
|
8260
8260
|
|
8261
|
-
# Register
|
8262
|
-
_VehiclesSwig.
|
8261
|
+
# Register Vehicles_Tracks_FixedLinkCountBelt in _VehiclesSwig:
|
8262
|
+
_VehiclesSwig.Vehicles_Tracks_FixedLinkCountBelt_swigregister(Vehicles_Tracks_FixedLinkCountBelt)
|
8263
8263
|
|
8264
|
-
class
|
8264
|
+
class Vehicles_Tracks_RigidCylindricalIdler(Vehicles_Tracks_CylindricalIdler):
|
8265
8265
|
r"""Proxy of C++ openplx::Vehicles::Tracks::RigidCylindricalIdler class."""
|
8266
8266
|
|
8267
8267
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
8268
8268
|
__repr__ = _swig_repr
|
8269
8269
|
|
8270
8270
|
def __init__(self):
|
8271
|
-
r"""__init__(
|
8272
|
-
_VehiclesSwig.
|
8271
|
+
r"""__init__(Vehicles_Tracks_RigidCylindricalIdler self) -> Vehicles_Tracks_RigidCylindricalIdler"""
|
8272
|
+
_VehiclesSwig.Vehicles_Tracks_RigidCylindricalIdler_swiginit(self, _VehiclesSwig.new_Vehicles_Tracks_RigidCylindricalIdler())
|
8273
8273
|
|
8274
8274
|
def body(self):
|
8275
|
-
r"""body(
|
8276
|
-
return _VehiclesSwig.
|
8275
|
+
r"""body(Vehicles_Tracks_RigidCylindricalIdler self) -> std::shared_ptr< openplx::Vehicles::Tracks::RigidCylindricalRoadWheelBody >"""
|
8276
|
+
return _VehiclesSwig.Vehicles_Tracks_RigidCylindricalIdler_body(self)
|
8277
8277
|
|
8278
8278
|
def setDynamic(self, key, value):
|
8279
8279
|
r"""
|
8280
|
-
setDynamic(
|
8280
|
+
setDynamic(Vehicles_Tracks_RigidCylindricalIdler self, std::string const & key, Any value)
|
8281
8281
|
|
8282
8282
|
Parameters
|
8283
8283
|
----------
|
@@ -8285,22 +8285,22 @@ class Tracks_RigidCylindricalIdler(Tracks_CylindricalIdler):
|
|
8285
8285
|
value: openplx::Core::Any &&
|
8286
8286
|
|
8287
8287
|
"""
|
8288
|
-
return _VehiclesSwig.
|
8288
|
+
return _VehiclesSwig.Vehicles_Tracks_RigidCylindricalIdler_setDynamic(self, key, value)
|
8289
8289
|
|
8290
8290
|
def getDynamic(self, key):
|
8291
8291
|
r"""
|
8292
|
-
getDynamic(
|
8292
|
+
getDynamic(Vehicles_Tracks_RigidCylindricalIdler self, std::string const & key) -> Any
|
8293
8293
|
|
8294
8294
|
Parameters
|
8295
8295
|
----------
|
8296
8296
|
key: std::string const &
|
8297
8297
|
|
8298
8298
|
"""
|
8299
|
-
return _VehiclesSwig.
|
8299
|
+
return _VehiclesSwig.Vehicles_Tracks_RigidCylindricalIdler_getDynamic(self, key)
|
8300
8300
|
|
8301
8301
|
def callDynamic(self, key, args):
|
8302
8302
|
r"""
|
8303
|
-
callDynamic(
|
8303
|
+
callDynamic(Vehicles_Tracks_RigidCylindricalIdler self, std::string const & key, AnyVector args) -> Any
|
8304
8304
|
|
8305
8305
|
Parameters
|
8306
8306
|
----------
|
@@ -8308,62 +8308,62 @@ class Tracks_RigidCylindricalIdler(Tracks_CylindricalIdler):
|
|
8308
8308
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
8309
8309
|
|
8310
8310
|
"""
|
8311
|
-
return _VehiclesSwig.
|
8311
|
+
return _VehiclesSwig.Vehicles_Tracks_RigidCylindricalIdler_callDynamic(self, key, args)
|
8312
8312
|
|
8313
8313
|
def extractObjectFieldsTo(self, output):
|
8314
8314
|
r"""
|
8315
|
-
extractObjectFieldsTo(
|
8315
|
+
extractObjectFieldsTo(Vehicles_Tracks_RigidCylindricalIdler self, ObjectVector output)
|
8316
8316
|
|
8317
8317
|
Parameters
|
8318
8318
|
----------
|
8319
8319
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
8320
8320
|
|
8321
8321
|
"""
|
8322
|
-
return _VehiclesSwig.
|
8322
|
+
return _VehiclesSwig.Vehicles_Tracks_RigidCylindricalIdler_extractObjectFieldsTo(self, output)
|
8323
8323
|
|
8324
8324
|
def extractEntriesTo(self, output):
|
8325
8325
|
r"""
|
8326
|
-
extractEntriesTo(
|
8326
|
+
extractEntriesTo(Vehicles_Tracks_RigidCylindricalIdler self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
8327
8327
|
|
8328
8328
|
Parameters
|
8329
8329
|
----------
|
8330
8330
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
8331
8331
|
|
8332
8332
|
"""
|
8333
|
-
return _VehiclesSwig.
|
8333
|
+
return _VehiclesSwig.Vehicles_Tracks_RigidCylindricalIdler_extractEntriesTo(self, output)
|
8334
8334
|
|
8335
8335
|
def triggerOnInit(self, context):
|
8336
8336
|
r"""
|
8337
|
-
triggerOnInit(
|
8337
|
+
triggerOnInit(Vehicles_Tracks_RigidCylindricalIdler self, openplx::RuntimeContext const & context)
|
8338
8338
|
|
8339
8339
|
Parameters
|
8340
8340
|
----------
|
8341
8341
|
context: openplx::RuntimeContext const &
|
8342
8342
|
|
8343
8343
|
"""
|
8344
|
-
return _VehiclesSwig.
|
8345
|
-
__swig_destroy__ = _VehiclesSwig.
|
8344
|
+
return _VehiclesSwig.Vehicles_Tracks_RigidCylindricalIdler_triggerOnInit(self, context)
|
8345
|
+
__swig_destroy__ = _VehiclesSwig.delete_Vehicles_Tracks_RigidCylindricalIdler
|
8346
8346
|
|
8347
|
-
# Register
|
8348
|
-
_VehiclesSwig.
|
8347
|
+
# Register Vehicles_Tracks_RigidCylindricalIdler in _VehiclesSwig:
|
8348
|
+
_VehiclesSwig.Vehicles_Tracks_RigidCylindricalIdler_swigregister(Vehicles_Tracks_RigidCylindricalIdler)
|
8349
8349
|
|
8350
|
-
class
|
8350
|
+
class Vehicles_Tracks_RigidCylindricalRoadWheelBody(openplx.Physics3D.Physics3D_Bodies_RigidBody):
|
8351
8351
|
r"""Proxy of C++ openplx::Vehicles::Tracks::RigidCylindricalRoadWheelBody class."""
|
8352
8352
|
|
8353
8353
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
8354
8354
|
__repr__ = _swig_repr
|
8355
8355
|
|
8356
8356
|
def __init__(self):
|
8357
|
-
r"""__init__(
|
8358
|
-
_VehiclesSwig.
|
8357
|
+
r"""__init__(Vehicles_Tracks_RigidCylindricalRoadWheelBody self) -> Vehicles_Tracks_RigidCylindricalRoadWheelBody"""
|
8358
|
+
_VehiclesSwig.Vehicles_Tracks_RigidCylindricalRoadWheelBody_swiginit(self, _VehiclesSwig.new_Vehicles_Tracks_RigidCylindricalRoadWheelBody())
|
8359
8359
|
|
8360
8360
|
def geometry(self):
|
8361
|
-
r"""geometry(
|
8362
|
-
return _VehiclesSwig.
|
8361
|
+
r"""geometry(Vehicles_Tracks_RigidCylindricalRoadWheelBody self) -> std::shared_ptr< openplx::Physics3D::Charges::Cylinder >"""
|
8362
|
+
return _VehiclesSwig.Vehicles_Tracks_RigidCylindricalRoadWheelBody_geometry(self)
|
8363
8363
|
|
8364
8364
|
def setDynamic(self, key, value):
|
8365
8365
|
r"""
|
8366
|
-
setDynamic(
|
8366
|
+
setDynamic(Vehicles_Tracks_RigidCylindricalRoadWheelBody self, std::string const & key, Any value)
|
8367
8367
|
|
8368
8368
|
Parameters
|
8369
8369
|
----------
|
@@ -8371,22 +8371,22 @@ class Tracks_RigidCylindricalRoadWheelBody(openplx.Physics3D.Bodies_RigidBody):
|
|
8371
8371
|
value: openplx::Core::Any &&
|
8372
8372
|
|
8373
8373
|
"""
|
8374
|
-
return _VehiclesSwig.
|
8374
|
+
return _VehiclesSwig.Vehicles_Tracks_RigidCylindricalRoadWheelBody_setDynamic(self, key, value)
|
8375
8375
|
|
8376
8376
|
def getDynamic(self, key):
|
8377
8377
|
r"""
|
8378
|
-
getDynamic(
|
8378
|
+
getDynamic(Vehicles_Tracks_RigidCylindricalRoadWheelBody self, std::string const & key) -> Any
|
8379
8379
|
|
8380
8380
|
Parameters
|
8381
8381
|
----------
|
8382
8382
|
key: std::string const &
|
8383
8383
|
|
8384
8384
|
"""
|
8385
|
-
return _VehiclesSwig.
|
8385
|
+
return _VehiclesSwig.Vehicles_Tracks_RigidCylindricalRoadWheelBody_getDynamic(self, key)
|
8386
8386
|
|
8387
8387
|
def callDynamic(self, key, args):
|
8388
8388
|
r"""
|
8389
|
-
callDynamic(
|
8389
|
+
callDynamic(Vehicles_Tracks_RigidCylindricalRoadWheelBody self, std::string const & key, AnyVector args) -> Any
|
8390
8390
|
|
8391
8391
|
Parameters
|
8392
8392
|
----------
|
@@ -8394,62 +8394,62 @@ class Tracks_RigidCylindricalRoadWheelBody(openplx.Physics3D.Bodies_RigidBody):
|
|
8394
8394
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
8395
8395
|
|
8396
8396
|
"""
|
8397
|
-
return _VehiclesSwig.
|
8397
|
+
return _VehiclesSwig.Vehicles_Tracks_RigidCylindricalRoadWheelBody_callDynamic(self, key, args)
|
8398
8398
|
|
8399
8399
|
def extractObjectFieldsTo(self, output):
|
8400
8400
|
r"""
|
8401
|
-
extractObjectFieldsTo(
|
8401
|
+
extractObjectFieldsTo(Vehicles_Tracks_RigidCylindricalRoadWheelBody self, ObjectVector output)
|
8402
8402
|
|
8403
8403
|
Parameters
|
8404
8404
|
----------
|
8405
8405
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
8406
8406
|
|
8407
8407
|
"""
|
8408
|
-
return _VehiclesSwig.
|
8408
|
+
return _VehiclesSwig.Vehicles_Tracks_RigidCylindricalRoadWheelBody_extractObjectFieldsTo(self, output)
|
8409
8409
|
|
8410
8410
|
def extractEntriesTo(self, output):
|
8411
8411
|
r"""
|
8412
|
-
extractEntriesTo(
|
8412
|
+
extractEntriesTo(Vehicles_Tracks_RigidCylindricalRoadWheelBody self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
8413
8413
|
|
8414
8414
|
Parameters
|
8415
8415
|
----------
|
8416
8416
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
8417
8417
|
|
8418
8418
|
"""
|
8419
|
-
return _VehiclesSwig.
|
8419
|
+
return _VehiclesSwig.Vehicles_Tracks_RigidCylindricalRoadWheelBody_extractEntriesTo(self, output)
|
8420
8420
|
|
8421
8421
|
def triggerOnInit(self, context):
|
8422
8422
|
r"""
|
8423
|
-
triggerOnInit(
|
8423
|
+
triggerOnInit(Vehicles_Tracks_RigidCylindricalRoadWheelBody self, openplx::RuntimeContext const & context)
|
8424
8424
|
|
8425
8425
|
Parameters
|
8426
8426
|
----------
|
8427
8427
|
context: openplx::RuntimeContext const &
|
8428
8428
|
|
8429
8429
|
"""
|
8430
|
-
return _VehiclesSwig.
|
8431
|
-
__swig_destroy__ = _VehiclesSwig.
|
8430
|
+
return _VehiclesSwig.Vehicles_Tracks_RigidCylindricalRoadWheelBody_triggerOnInit(self, context)
|
8431
|
+
__swig_destroy__ = _VehiclesSwig.delete_Vehicles_Tracks_RigidCylindricalRoadWheelBody
|
8432
8432
|
|
8433
|
-
# Register
|
8434
|
-
_VehiclesSwig.
|
8433
|
+
# Register Vehicles_Tracks_RigidCylindricalRoadWheelBody in _VehiclesSwig:
|
8434
|
+
_VehiclesSwig.Vehicles_Tracks_RigidCylindricalRoadWheelBody_swigregister(Vehicles_Tracks_RigidCylindricalRoadWheelBody)
|
8435
8435
|
|
8436
|
-
class
|
8436
|
+
class Vehicles_Tracks_RigidCylindricalRoller(Vehicles_Tracks_CylindricalRoller):
|
8437
8437
|
r"""Proxy of C++ openplx::Vehicles::Tracks::RigidCylindricalRoller class."""
|
8438
8438
|
|
8439
8439
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
8440
8440
|
__repr__ = _swig_repr
|
8441
8441
|
|
8442
8442
|
def __init__(self):
|
8443
|
-
r"""__init__(
|
8444
|
-
_VehiclesSwig.
|
8443
|
+
r"""__init__(Vehicles_Tracks_RigidCylindricalRoller self) -> Vehicles_Tracks_RigidCylindricalRoller"""
|
8444
|
+
_VehiclesSwig.Vehicles_Tracks_RigidCylindricalRoller_swiginit(self, _VehiclesSwig.new_Vehicles_Tracks_RigidCylindricalRoller())
|
8445
8445
|
|
8446
8446
|
def body(self):
|
8447
|
-
r"""body(
|
8448
|
-
return _VehiclesSwig.
|
8447
|
+
r"""body(Vehicles_Tracks_RigidCylindricalRoller self) -> std::shared_ptr< openplx::Vehicles::Tracks::RigidCylindricalRoadWheelBody >"""
|
8448
|
+
return _VehiclesSwig.Vehicles_Tracks_RigidCylindricalRoller_body(self)
|
8449
8449
|
|
8450
8450
|
def setDynamic(self, key, value):
|
8451
8451
|
r"""
|
8452
|
-
setDynamic(
|
8452
|
+
setDynamic(Vehicles_Tracks_RigidCylindricalRoller self, std::string const & key, Any value)
|
8453
8453
|
|
8454
8454
|
Parameters
|
8455
8455
|
----------
|
@@ -8457,22 +8457,22 @@ class Tracks_RigidCylindricalRoller(Tracks_CylindricalRoller):
|
|
8457
8457
|
value: openplx::Core::Any &&
|
8458
8458
|
|
8459
8459
|
"""
|
8460
|
-
return _VehiclesSwig.
|
8460
|
+
return _VehiclesSwig.Vehicles_Tracks_RigidCylindricalRoller_setDynamic(self, key, value)
|
8461
8461
|
|
8462
8462
|
def getDynamic(self, key):
|
8463
8463
|
r"""
|
8464
|
-
getDynamic(
|
8464
|
+
getDynamic(Vehicles_Tracks_RigidCylindricalRoller self, std::string const & key) -> Any
|
8465
8465
|
|
8466
8466
|
Parameters
|
8467
8467
|
----------
|
8468
8468
|
key: std::string const &
|
8469
8469
|
|
8470
8470
|
"""
|
8471
|
-
return _VehiclesSwig.
|
8471
|
+
return _VehiclesSwig.Vehicles_Tracks_RigidCylindricalRoller_getDynamic(self, key)
|
8472
8472
|
|
8473
8473
|
def callDynamic(self, key, args):
|
8474
8474
|
r"""
|
8475
|
-
callDynamic(
|
8475
|
+
callDynamic(Vehicles_Tracks_RigidCylindricalRoller self, std::string const & key, AnyVector args) -> Any
|
8476
8476
|
|
8477
8477
|
Parameters
|
8478
8478
|
----------
|
@@ -8480,62 +8480,62 @@ class Tracks_RigidCylindricalRoller(Tracks_CylindricalRoller):
|
|
8480
8480
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
8481
8481
|
|
8482
8482
|
"""
|
8483
|
-
return _VehiclesSwig.
|
8483
|
+
return _VehiclesSwig.Vehicles_Tracks_RigidCylindricalRoller_callDynamic(self, key, args)
|
8484
8484
|
|
8485
8485
|
def extractObjectFieldsTo(self, output):
|
8486
8486
|
r"""
|
8487
|
-
extractObjectFieldsTo(
|
8487
|
+
extractObjectFieldsTo(Vehicles_Tracks_RigidCylindricalRoller self, ObjectVector output)
|
8488
8488
|
|
8489
8489
|
Parameters
|
8490
8490
|
----------
|
8491
8491
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
8492
8492
|
|
8493
8493
|
"""
|
8494
|
-
return _VehiclesSwig.
|
8494
|
+
return _VehiclesSwig.Vehicles_Tracks_RigidCylindricalRoller_extractObjectFieldsTo(self, output)
|
8495
8495
|
|
8496
8496
|
def extractEntriesTo(self, output):
|
8497
8497
|
r"""
|
8498
|
-
extractEntriesTo(
|
8498
|
+
extractEntriesTo(Vehicles_Tracks_RigidCylindricalRoller self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
8499
8499
|
|
8500
8500
|
Parameters
|
8501
8501
|
----------
|
8502
8502
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
8503
8503
|
|
8504
8504
|
"""
|
8505
|
-
return _VehiclesSwig.
|
8505
|
+
return _VehiclesSwig.Vehicles_Tracks_RigidCylindricalRoller_extractEntriesTo(self, output)
|
8506
8506
|
|
8507
8507
|
def triggerOnInit(self, context):
|
8508
8508
|
r"""
|
8509
|
-
triggerOnInit(
|
8509
|
+
triggerOnInit(Vehicles_Tracks_RigidCylindricalRoller self, openplx::RuntimeContext const & context)
|
8510
8510
|
|
8511
8511
|
Parameters
|
8512
8512
|
----------
|
8513
8513
|
context: openplx::RuntimeContext const &
|
8514
8514
|
|
8515
8515
|
"""
|
8516
|
-
return _VehiclesSwig.
|
8517
|
-
__swig_destroy__ = _VehiclesSwig.
|
8516
|
+
return _VehiclesSwig.Vehicles_Tracks_RigidCylindricalRoller_triggerOnInit(self, context)
|
8517
|
+
__swig_destroy__ = _VehiclesSwig.delete_Vehicles_Tracks_RigidCylindricalRoller
|
8518
8518
|
|
8519
|
-
# Register
|
8520
|
-
_VehiclesSwig.
|
8519
|
+
# Register Vehicles_Tracks_RigidCylindricalRoller in _VehiclesSwig:
|
8520
|
+
_VehiclesSwig.Vehicles_Tracks_RigidCylindricalRoller_swigregister(Vehicles_Tracks_RigidCylindricalRoller)
|
8521
8521
|
|
8522
|
-
class
|
8522
|
+
class Vehicles_Tracks_RigidCylindricalSprocket(Vehicles_Tracks_CylindricalSprocket):
|
8523
8523
|
r"""Proxy of C++ openplx::Vehicles::Tracks::RigidCylindricalSprocket class."""
|
8524
8524
|
|
8525
8525
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
8526
8526
|
__repr__ = _swig_repr
|
8527
8527
|
|
8528
8528
|
def __init__(self):
|
8529
|
-
r"""__init__(
|
8530
|
-
_VehiclesSwig.
|
8529
|
+
r"""__init__(Vehicles_Tracks_RigidCylindricalSprocket self) -> Vehicles_Tracks_RigidCylindricalSprocket"""
|
8530
|
+
_VehiclesSwig.Vehicles_Tracks_RigidCylindricalSprocket_swiginit(self, _VehiclesSwig.new_Vehicles_Tracks_RigidCylindricalSprocket())
|
8531
8531
|
|
8532
8532
|
def body(self):
|
8533
|
-
r"""body(
|
8534
|
-
return _VehiclesSwig.
|
8533
|
+
r"""body(Vehicles_Tracks_RigidCylindricalSprocket self) -> std::shared_ptr< openplx::Vehicles::Tracks::RigidCylindricalRoadWheelBody >"""
|
8534
|
+
return _VehiclesSwig.Vehicles_Tracks_RigidCylindricalSprocket_body(self)
|
8535
8535
|
|
8536
8536
|
def setDynamic(self, key, value):
|
8537
8537
|
r"""
|
8538
|
-
setDynamic(
|
8538
|
+
setDynamic(Vehicles_Tracks_RigidCylindricalSprocket self, std::string const & key, Any value)
|
8539
8539
|
|
8540
8540
|
Parameters
|
8541
8541
|
----------
|
@@ -8543,22 +8543,22 @@ class Tracks_RigidCylindricalSprocket(Tracks_CylindricalSprocket):
|
|
8543
8543
|
value: openplx::Core::Any &&
|
8544
8544
|
|
8545
8545
|
"""
|
8546
|
-
return _VehiclesSwig.
|
8546
|
+
return _VehiclesSwig.Vehicles_Tracks_RigidCylindricalSprocket_setDynamic(self, key, value)
|
8547
8547
|
|
8548
8548
|
def getDynamic(self, key):
|
8549
8549
|
r"""
|
8550
|
-
getDynamic(
|
8550
|
+
getDynamic(Vehicles_Tracks_RigidCylindricalSprocket self, std::string const & key) -> Any
|
8551
8551
|
|
8552
8552
|
Parameters
|
8553
8553
|
----------
|
8554
8554
|
key: std::string const &
|
8555
8555
|
|
8556
8556
|
"""
|
8557
|
-
return _VehiclesSwig.
|
8557
|
+
return _VehiclesSwig.Vehicles_Tracks_RigidCylindricalSprocket_getDynamic(self, key)
|
8558
8558
|
|
8559
8559
|
def callDynamic(self, key, args):
|
8560
8560
|
r"""
|
8561
|
-
callDynamic(
|
8561
|
+
callDynamic(Vehicles_Tracks_RigidCylindricalSprocket self, std::string const & key, AnyVector args) -> Any
|
8562
8562
|
|
8563
8563
|
Parameters
|
8564
8564
|
----------
|
@@ -8566,66 +8566,66 @@ class Tracks_RigidCylindricalSprocket(Tracks_CylindricalSprocket):
|
|
8566
8566
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
8567
8567
|
|
8568
8568
|
"""
|
8569
|
-
return _VehiclesSwig.
|
8569
|
+
return _VehiclesSwig.Vehicles_Tracks_RigidCylindricalSprocket_callDynamic(self, key, args)
|
8570
8570
|
|
8571
8571
|
def extractObjectFieldsTo(self, output):
|
8572
8572
|
r"""
|
8573
|
-
extractObjectFieldsTo(
|
8573
|
+
extractObjectFieldsTo(Vehicles_Tracks_RigidCylindricalSprocket self, ObjectVector output)
|
8574
8574
|
|
8575
8575
|
Parameters
|
8576
8576
|
----------
|
8577
8577
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
8578
8578
|
|
8579
8579
|
"""
|
8580
|
-
return _VehiclesSwig.
|
8580
|
+
return _VehiclesSwig.Vehicles_Tracks_RigidCylindricalSprocket_extractObjectFieldsTo(self, output)
|
8581
8581
|
|
8582
8582
|
def extractEntriesTo(self, output):
|
8583
8583
|
r"""
|
8584
|
-
extractEntriesTo(
|
8584
|
+
extractEntriesTo(Vehicles_Tracks_RigidCylindricalSprocket self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
8585
8585
|
|
8586
8586
|
Parameters
|
8587
8587
|
----------
|
8588
8588
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
8589
8589
|
|
8590
8590
|
"""
|
8591
|
-
return _VehiclesSwig.
|
8591
|
+
return _VehiclesSwig.Vehicles_Tracks_RigidCylindricalSprocket_extractEntriesTo(self, output)
|
8592
8592
|
|
8593
8593
|
def triggerOnInit(self, context):
|
8594
8594
|
r"""
|
8595
|
-
triggerOnInit(
|
8595
|
+
triggerOnInit(Vehicles_Tracks_RigidCylindricalSprocket self, openplx::RuntimeContext const & context)
|
8596
8596
|
|
8597
8597
|
Parameters
|
8598
8598
|
----------
|
8599
8599
|
context: openplx::RuntimeContext const &
|
8600
8600
|
|
8601
8601
|
"""
|
8602
|
-
return _VehiclesSwig.
|
8603
|
-
__swig_destroy__ = _VehiclesSwig.
|
8602
|
+
return _VehiclesSwig.Vehicles_Tracks_RigidCylindricalSprocket_triggerOnInit(self, context)
|
8603
|
+
__swig_destroy__ = _VehiclesSwig.delete_Vehicles_Tracks_RigidCylindricalSprocket
|
8604
8604
|
|
8605
|
-
# Register
|
8606
|
-
_VehiclesSwig.
|
8605
|
+
# Register Vehicles_Tracks_RigidCylindricalSprocket in _VehiclesSwig:
|
8606
|
+
_VehiclesSwig.Vehicles_Tracks_RigidCylindricalSprocket_swigregister(Vehicles_Tracks_RigidCylindricalSprocket)
|
8607
8607
|
|
8608
|
-
class
|
8608
|
+
class Vehicles_Tracks_SinusoidalVariation(Vehicles_Tracks_CyclicVariation):
|
8609
8609
|
r"""Proxy of C++ openplx::Vehicles::Tracks::SinusoidalVariation class."""
|
8610
8610
|
|
8611
8611
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
8612
8612
|
__repr__ = _swig_repr
|
8613
8613
|
|
8614
8614
|
def __init__(self):
|
8615
|
-
r"""__init__(
|
8616
|
-
_VehiclesSwig.
|
8615
|
+
r"""__init__(Vehicles_Tracks_SinusoidalVariation self) -> Vehicles_Tracks_SinusoidalVariation"""
|
8616
|
+
_VehiclesSwig.Vehicles_Tracks_SinusoidalVariation_swiginit(self, _VehiclesSwig.new_Vehicles_Tracks_SinusoidalVariation())
|
8617
8617
|
|
8618
8618
|
def additional_amplitude(self):
|
8619
|
-
r"""additional_amplitude(
|
8620
|
-
return _VehiclesSwig.
|
8619
|
+
r"""additional_amplitude(Vehicles_Tracks_SinusoidalVariation self) -> double"""
|
8620
|
+
return _VehiclesSwig.Vehicles_Tracks_SinusoidalVariation_additional_amplitude(self)
|
8621
8621
|
|
8622
8622
|
def period(self):
|
8623
|
-
r"""period(
|
8624
|
-
return _VehiclesSwig.
|
8623
|
+
r"""period(Vehicles_Tracks_SinusoidalVariation self) -> double"""
|
8624
|
+
return _VehiclesSwig.Vehicles_Tracks_SinusoidalVariation_period(self)
|
8625
8625
|
|
8626
8626
|
def setDynamic(self, key, value):
|
8627
8627
|
r"""
|
8628
|
-
setDynamic(
|
8628
|
+
setDynamic(Vehicles_Tracks_SinusoidalVariation self, std::string const & key, Any value)
|
8629
8629
|
|
8630
8630
|
Parameters
|
8631
8631
|
----------
|
@@ -8633,22 +8633,22 @@ class Tracks_SinusoidalVariation(Tracks_CyclicVariation):
|
|
8633
8633
|
value: openplx::Core::Any &&
|
8634
8634
|
|
8635
8635
|
"""
|
8636
|
-
return _VehiclesSwig.
|
8636
|
+
return _VehiclesSwig.Vehicles_Tracks_SinusoidalVariation_setDynamic(self, key, value)
|
8637
8637
|
|
8638
8638
|
def getDynamic(self, key):
|
8639
8639
|
r"""
|
8640
|
-
getDynamic(
|
8640
|
+
getDynamic(Vehicles_Tracks_SinusoidalVariation self, std::string const & key) -> Any
|
8641
8641
|
|
8642
8642
|
Parameters
|
8643
8643
|
----------
|
8644
8644
|
key: std::string const &
|
8645
8645
|
|
8646
8646
|
"""
|
8647
|
-
return _VehiclesSwig.
|
8647
|
+
return _VehiclesSwig.Vehicles_Tracks_SinusoidalVariation_getDynamic(self, key)
|
8648
8648
|
|
8649
8649
|
def callDynamic(self, key, args):
|
8650
8650
|
r"""
|
8651
|
-
callDynamic(
|
8651
|
+
callDynamic(Vehicles_Tracks_SinusoidalVariation self, std::string const & key, AnyVector args) -> Any
|
8652
8652
|
|
8653
8653
|
Parameters
|
8654
8654
|
----------
|
@@ -8656,70 +8656,70 @@ class Tracks_SinusoidalVariation(Tracks_CyclicVariation):
|
|
8656
8656
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
8657
8657
|
|
8658
8658
|
"""
|
8659
|
-
return _VehiclesSwig.
|
8659
|
+
return _VehiclesSwig.Vehicles_Tracks_SinusoidalVariation_callDynamic(self, key, args)
|
8660
8660
|
|
8661
8661
|
def extractObjectFieldsTo(self, output):
|
8662
8662
|
r"""
|
8663
|
-
extractObjectFieldsTo(
|
8663
|
+
extractObjectFieldsTo(Vehicles_Tracks_SinusoidalVariation self, ObjectVector output)
|
8664
8664
|
|
8665
8665
|
Parameters
|
8666
8666
|
----------
|
8667
8667
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
8668
8668
|
|
8669
8669
|
"""
|
8670
|
-
return _VehiclesSwig.
|
8670
|
+
return _VehiclesSwig.Vehicles_Tracks_SinusoidalVariation_extractObjectFieldsTo(self, output)
|
8671
8671
|
|
8672
8672
|
def extractEntriesTo(self, output):
|
8673
8673
|
r"""
|
8674
|
-
extractEntriesTo(
|
8674
|
+
extractEntriesTo(Vehicles_Tracks_SinusoidalVariation self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
8675
8675
|
|
8676
8676
|
Parameters
|
8677
8677
|
----------
|
8678
8678
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
8679
8679
|
|
8680
8680
|
"""
|
8681
|
-
return _VehiclesSwig.
|
8681
|
+
return _VehiclesSwig.Vehicles_Tracks_SinusoidalVariation_extractEntriesTo(self, output)
|
8682
8682
|
|
8683
8683
|
def triggerOnInit(self, context):
|
8684
8684
|
r"""
|
8685
|
-
triggerOnInit(
|
8685
|
+
triggerOnInit(Vehicles_Tracks_SinusoidalVariation self, openplx::RuntimeContext const & context)
|
8686
8686
|
|
8687
8687
|
Parameters
|
8688
8688
|
----------
|
8689
8689
|
context: openplx::RuntimeContext const &
|
8690
8690
|
|
8691
8691
|
"""
|
8692
|
-
return _VehiclesSwig.
|
8693
|
-
__swig_destroy__ = _VehiclesSwig.
|
8692
|
+
return _VehiclesSwig.Vehicles_Tracks_SinusoidalVariation_triggerOnInit(self, context)
|
8693
|
+
__swig_destroy__ = _VehiclesSwig.delete_Vehicles_Tracks_SinusoidalVariation
|
8694
8694
|
|
8695
|
-
# Register
|
8696
|
-
_VehiclesSwig.
|
8695
|
+
# Register Vehicles_Tracks_SinusoidalVariation in _VehiclesSwig:
|
8696
|
+
_VehiclesSwig.Vehicles_Tracks_SinusoidalVariation_swigregister(Vehicles_Tracks_SinusoidalVariation)
|
8697
8697
|
|
8698
|
-
class
|
8698
|
+
class Vehicles_Tracks_System(openplx.Physics3D.Physics3D_StructuralPlane):
|
8699
8699
|
r"""Proxy of C++ openplx::Vehicles::Tracks::System class."""
|
8700
8700
|
|
8701
8701
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
8702
8702
|
__repr__ = _swig_repr
|
8703
8703
|
|
8704
8704
|
def __init__(self):
|
8705
|
-
r"""__init__(
|
8706
|
-
_VehiclesSwig.
|
8705
|
+
r"""__init__(Vehicles_Tracks_System self) -> Vehicles_Tracks_System"""
|
8706
|
+
_VehiclesSwig.Vehicles_Tracks_System_swiginit(self, _VehiclesSwig.new_Vehicles_Tracks_System())
|
8707
8707
|
|
8708
8708
|
def belt(self):
|
8709
|
-
r"""belt(
|
8710
|
-
return _VehiclesSwig.
|
8709
|
+
r"""belt(Vehicles_Tracks_System self) -> std::shared_ptr< openplx::Vehicles::Tracks::Belt >"""
|
8710
|
+
return _VehiclesSwig.Vehicles_Tracks_System_belt(self)
|
8711
8711
|
|
8712
8712
|
def road_wheels(self):
|
8713
|
-
r"""road_wheels(
|
8714
|
-
return _VehiclesSwig.
|
8713
|
+
r"""road_wheels(Vehicles_Tracks_System self) -> Vehicles_Tracks_RoadWheel_Vector"""
|
8714
|
+
return _VehiclesSwig.Vehicles_Tracks_System_road_wheels(self)
|
8715
8715
|
|
8716
8716
|
def initial_distance_tension(self):
|
8717
|
-
r"""initial_distance_tension(
|
8718
|
-
return _VehiclesSwig.
|
8717
|
+
r"""initial_distance_tension(Vehicles_Tracks_System self) -> double"""
|
8718
|
+
return _VehiclesSwig.Vehicles_Tracks_System_initial_distance_tension(self)
|
8719
8719
|
|
8720
8720
|
def setDynamic(self, key, value):
|
8721
8721
|
r"""
|
8722
|
-
setDynamic(
|
8722
|
+
setDynamic(Vehicles_Tracks_System self, std::string const & key, Any value)
|
8723
8723
|
|
8724
8724
|
Parameters
|
8725
8725
|
----------
|
@@ -8727,22 +8727,22 @@ class Tracks_System(openplx.Physics3D.StructuralPlane):
|
|
8727
8727
|
value: openplx::Core::Any &&
|
8728
8728
|
|
8729
8729
|
"""
|
8730
|
-
return _VehiclesSwig.
|
8730
|
+
return _VehiclesSwig.Vehicles_Tracks_System_setDynamic(self, key, value)
|
8731
8731
|
|
8732
8732
|
def getDynamic(self, key):
|
8733
8733
|
r"""
|
8734
|
-
getDynamic(
|
8734
|
+
getDynamic(Vehicles_Tracks_System self, std::string const & key) -> Any
|
8735
8735
|
|
8736
8736
|
Parameters
|
8737
8737
|
----------
|
8738
8738
|
key: std::string const &
|
8739
8739
|
|
8740
8740
|
"""
|
8741
|
-
return _VehiclesSwig.
|
8741
|
+
return _VehiclesSwig.Vehicles_Tracks_System_getDynamic(self, key)
|
8742
8742
|
|
8743
8743
|
def callDynamic(self, key, args):
|
8744
8744
|
r"""
|
8745
|
-
callDynamic(
|
8745
|
+
callDynamic(Vehicles_Tracks_System self, std::string const & key, AnyVector args) -> Any
|
8746
8746
|
|
8747
8747
|
Parameters
|
8748
8748
|
----------
|
@@ -8750,44 +8750,44 @@ class Tracks_System(openplx.Physics3D.StructuralPlane):
|
|
8750
8750
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
8751
8751
|
|
8752
8752
|
"""
|
8753
|
-
return _VehiclesSwig.
|
8753
|
+
return _VehiclesSwig.Vehicles_Tracks_System_callDynamic(self, key, args)
|
8754
8754
|
|
8755
8755
|
def extractObjectFieldsTo(self, output):
|
8756
8756
|
r"""
|
8757
|
-
extractObjectFieldsTo(
|
8757
|
+
extractObjectFieldsTo(Vehicles_Tracks_System self, ObjectVector output)
|
8758
8758
|
|
8759
8759
|
Parameters
|
8760
8760
|
----------
|
8761
8761
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
8762
8762
|
|
8763
8763
|
"""
|
8764
|
-
return _VehiclesSwig.
|
8764
|
+
return _VehiclesSwig.Vehicles_Tracks_System_extractObjectFieldsTo(self, output)
|
8765
8765
|
|
8766
8766
|
def extractEntriesTo(self, output):
|
8767
8767
|
r"""
|
8768
|
-
extractEntriesTo(
|
8768
|
+
extractEntriesTo(Vehicles_Tracks_System self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
8769
8769
|
|
8770
8770
|
Parameters
|
8771
8771
|
----------
|
8772
8772
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
8773
8773
|
|
8774
8774
|
"""
|
8775
|
-
return _VehiclesSwig.
|
8775
|
+
return _VehiclesSwig.Vehicles_Tracks_System_extractEntriesTo(self, output)
|
8776
8776
|
|
8777
8777
|
def triggerOnInit(self, context):
|
8778
8778
|
r"""
|
8779
|
-
triggerOnInit(
|
8779
|
+
triggerOnInit(Vehicles_Tracks_System self, openplx::RuntimeContext const & context)
|
8780
8780
|
|
8781
8781
|
Parameters
|
8782
8782
|
----------
|
8783
8783
|
context: openplx::RuntimeContext const &
|
8784
8784
|
|
8785
8785
|
"""
|
8786
|
-
return _VehiclesSwig.
|
8787
|
-
__swig_destroy__ = _VehiclesSwig.
|
8786
|
+
return _VehiclesSwig.Vehicles_Tracks_System_triggerOnInit(self, context)
|
8787
|
+
__swig_destroy__ = _VehiclesSwig.delete_Vehicles_Tracks_System
|
8788
8788
|
|
8789
|
-
# Register
|
8790
|
-
_VehiclesSwig.
|
8789
|
+
# Register Vehicles_Tracks_System in _VehiclesSwig:
|
8790
|
+
_VehiclesSwig.Vehicles_Tracks_System_swigregister(Vehicles_Tracks_System)
|
8791
8791
|
|
8792
8792
|
|
8793
8793
|
|