agx-openplx 0.15.22__cp39-cp39-win_amd64.whl → 0.16.1__cp39-cp39-win_amd64.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.cp39-win_amd64.pyd +0 -0
- openplx/_CorePythonSwig.cp39-win_amd64.pyd +0 -0
- openplx/_DriveTrainSwig.cp39-win_amd64.pyd +0 -0
- openplx/_MathSwig.cp39-win_amd64.pyd +0 -0
- openplx/_Physics1DSwig.cp39-win_amd64.pyd +0 -0
- openplx/_Physics3DSwig.cp39-win_amd64.pyd +0 -0
- openplx/_PhysicsSwig.cp39-win_amd64.pyd +0 -0
- openplx/_RoboticsSwig.cp39-win_amd64.pyd +0 -0
- openplx/_SimulationSwig.cp39-win_amd64.pyd +0 -0
- openplx/_TerrainSwig.cp39-win_amd64.pyd +0 -0
- openplx/_UrdfSwig.cp39-win_amd64.pyd +0 -0
- openplx/_VehiclesSwig.cp39-win_amd64.pyd +0 -0
- openplx/_VisualsSwig.cp39-win_amd64.pyd +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/Terrain.py
CHANGED
@@ -3109,23 +3109,23 @@ class Terrain_TerrainMaterial_Vector(object):
|
|
3109
3109
|
# Register Terrain_TerrainMaterial_Vector in _TerrainSwig:
|
3110
3110
|
_TerrainSwig.Terrain_TerrainMaterial_Vector_swigregister(Terrain_TerrainMaterial_Vector)
|
3111
3111
|
|
3112
|
-
class
|
3112
|
+
class Terrain_TerrainMaterial(openplx.Physics.Physics_Charges_Material):
|
3113
3113
|
r"""Proxy of C++ openplx::Terrain::TerrainMaterial class."""
|
3114
3114
|
|
3115
3115
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
3116
3116
|
__repr__ = _swig_repr
|
3117
3117
|
|
3118
3118
|
def __init__(self):
|
3119
|
-
r"""__init__(
|
3120
|
-
_TerrainSwig.
|
3119
|
+
r"""__init__(Terrain_TerrainMaterial self) -> Terrain_TerrainMaterial"""
|
3120
|
+
_TerrainSwig.Terrain_TerrainMaterial_swiginit(self, _TerrainSwig.new_Terrain_TerrainMaterial())
|
3121
3121
|
|
3122
3122
|
def is_default_terrain_material(self):
|
3123
|
-
r"""is_default_terrain_material(
|
3124
|
-
return _TerrainSwig.
|
3123
|
+
r"""is_default_terrain_material(Terrain_TerrainMaterial self) -> bool"""
|
3124
|
+
return _TerrainSwig.Terrain_TerrainMaterial_is_default_terrain_material(self)
|
3125
3125
|
|
3126
3126
|
def setDynamic(self, key, value):
|
3127
3127
|
r"""
|
3128
|
-
setDynamic(
|
3128
|
+
setDynamic(Terrain_TerrainMaterial self, std::string const & key, Any value)
|
3129
3129
|
|
3130
3130
|
Parameters
|
3131
3131
|
----------
|
@@ -3133,22 +3133,22 @@ class TerrainMaterial(openplx.Physics.Charges_Material):
|
|
3133
3133
|
value: openplx::Core::Any &&
|
3134
3134
|
|
3135
3135
|
"""
|
3136
|
-
return _TerrainSwig.
|
3136
|
+
return _TerrainSwig.Terrain_TerrainMaterial_setDynamic(self, key, value)
|
3137
3137
|
|
3138
3138
|
def getDynamic(self, key):
|
3139
3139
|
r"""
|
3140
|
-
getDynamic(
|
3140
|
+
getDynamic(Terrain_TerrainMaterial self, std::string const & key) -> Any
|
3141
3141
|
|
3142
3142
|
Parameters
|
3143
3143
|
----------
|
3144
3144
|
key: std::string const &
|
3145
3145
|
|
3146
3146
|
"""
|
3147
|
-
return _TerrainSwig.
|
3147
|
+
return _TerrainSwig.Terrain_TerrainMaterial_getDynamic(self, key)
|
3148
3148
|
|
3149
3149
|
def callDynamic(self, key, args):
|
3150
3150
|
r"""
|
3151
|
-
callDynamic(
|
3151
|
+
callDynamic(Terrain_TerrainMaterial self, std::string const & key, AnyVector args) -> Any
|
3152
3152
|
|
3153
3153
|
Parameters
|
3154
3154
|
----------
|
@@ -3156,58 +3156,58 @@ class TerrainMaterial(openplx.Physics.Charges_Material):
|
|
3156
3156
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
3157
3157
|
|
3158
3158
|
"""
|
3159
|
-
return _TerrainSwig.
|
3159
|
+
return _TerrainSwig.Terrain_TerrainMaterial_callDynamic(self, key, args)
|
3160
3160
|
|
3161
3161
|
def extractObjectFieldsTo(self, output):
|
3162
3162
|
r"""
|
3163
|
-
extractObjectFieldsTo(
|
3163
|
+
extractObjectFieldsTo(Terrain_TerrainMaterial self, ObjectVector output)
|
3164
3164
|
|
3165
3165
|
Parameters
|
3166
3166
|
----------
|
3167
3167
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
3168
3168
|
|
3169
3169
|
"""
|
3170
|
-
return _TerrainSwig.
|
3170
|
+
return _TerrainSwig.Terrain_TerrainMaterial_extractObjectFieldsTo(self, output)
|
3171
3171
|
|
3172
3172
|
def extractEntriesTo(self, output):
|
3173
3173
|
r"""
|
3174
|
-
extractEntriesTo(
|
3174
|
+
extractEntriesTo(Terrain_TerrainMaterial self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
3175
3175
|
|
3176
3176
|
Parameters
|
3177
3177
|
----------
|
3178
3178
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
3179
3179
|
|
3180
3180
|
"""
|
3181
|
-
return _TerrainSwig.
|
3181
|
+
return _TerrainSwig.Terrain_TerrainMaterial_extractEntriesTo(self, output)
|
3182
3182
|
|
3183
3183
|
def triggerOnInit(self, context):
|
3184
3184
|
r"""
|
3185
|
-
triggerOnInit(
|
3185
|
+
triggerOnInit(Terrain_TerrainMaterial self, openplx::RuntimeContext const & context)
|
3186
3186
|
|
3187
3187
|
Parameters
|
3188
3188
|
----------
|
3189
3189
|
context: openplx::RuntimeContext const &
|
3190
3190
|
|
3191
3191
|
"""
|
3192
|
-
return _TerrainSwig.
|
3193
|
-
__swig_destroy__ = _TerrainSwig.
|
3192
|
+
return _TerrainSwig.Terrain_TerrainMaterial_triggerOnInit(self, context)
|
3193
|
+
__swig_destroy__ = _TerrainSwig.delete_Terrain_TerrainMaterial
|
3194
3194
|
|
3195
|
-
# Register
|
3196
|
-
_TerrainSwig.
|
3195
|
+
# Register Terrain_TerrainMaterial in _TerrainSwig:
|
3196
|
+
_TerrainSwig.Terrain_TerrainMaterial_swigregister(Terrain_TerrainMaterial)
|
3197
3197
|
|
3198
|
-
class
|
3198
|
+
class Terrain_MaterialLibrary_defaultTerrainMaterial(Terrain_TerrainMaterial):
|
3199
3199
|
r"""Proxy of C++ openplx::Terrain::MaterialLibrary::defaultTerrainMaterial class."""
|
3200
3200
|
|
3201
3201
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
3202
3202
|
__repr__ = _swig_repr
|
3203
3203
|
|
3204
3204
|
def __init__(self):
|
3205
|
-
r"""__init__(
|
3206
|
-
_TerrainSwig.
|
3205
|
+
r"""__init__(Terrain_MaterialLibrary_defaultTerrainMaterial self) -> Terrain_MaterialLibrary_defaultTerrainMaterial"""
|
3206
|
+
_TerrainSwig.Terrain_MaterialLibrary_defaultTerrainMaterial_swiginit(self, _TerrainSwig.new_Terrain_MaterialLibrary_defaultTerrainMaterial())
|
3207
3207
|
|
3208
3208
|
def setDynamic(self, key, value):
|
3209
3209
|
r"""
|
3210
|
-
setDynamic(
|
3210
|
+
setDynamic(Terrain_MaterialLibrary_defaultTerrainMaterial self, std::string const & key, Any value)
|
3211
3211
|
|
3212
3212
|
Parameters
|
3213
3213
|
----------
|
@@ -3215,22 +3215,22 @@ class MaterialLibrary_defaultTerrainMaterial(TerrainMaterial):
|
|
3215
3215
|
value: openplx::Core::Any &&
|
3216
3216
|
|
3217
3217
|
"""
|
3218
|
-
return _TerrainSwig.
|
3218
|
+
return _TerrainSwig.Terrain_MaterialLibrary_defaultTerrainMaterial_setDynamic(self, key, value)
|
3219
3219
|
|
3220
3220
|
def getDynamic(self, key):
|
3221
3221
|
r"""
|
3222
|
-
getDynamic(
|
3222
|
+
getDynamic(Terrain_MaterialLibrary_defaultTerrainMaterial self, std::string const & key) -> Any
|
3223
3223
|
|
3224
3224
|
Parameters
|
3225
3225
|
----------
|
3226
3226
|
key: std::string const &
|
3227
3227
|
|
3228
3228
|
"""
|
3229
|
-
return _TerrainSwig.
|
3229
|
+
return _TerrainSwig.Terrain_MaterialLibrary_defaultTerrainMaterial_getDynamic(self, key)
|
3230
3230
|
|
3231
3231
|
def callDynamic(self, key, args):
|
3232
3232
|
r"""
|
3233
|
-
callDynamic(
|
3233
|
+
callDynamic(Terrain_MaterialLibrary_defaultTerrainMaterial self, std::string const & key, AnyVector args) -> Any
|
3234
3234
|
|
3235
3235
|
Parameters
|
3236
3236
|
----------
|
@@ -3238,58 +3238,58 @@ class MaterialLibrary_defaultTerrainMaterial(TerrainMaterial):
|
|
3238
3238
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
3239
3239
|
|
3240
3240
|
"""
|
3241
|
-
return _TerrainSwig.
|
3241
|
+
return _TerrainSwig.Terrain_MaterialLibrary_defaultTerrainMaterial_callDynamic(self, key, args)
|
3242
3242
|
|
3243
3243
|
def extractObjectFieldsTo(self, output):
|
3244
3244
|
r"""
|
3245
|
-
extractObjectFieldsTo(
|
3245
|
+
extractObjectFieldsTo(Terrain_MaterialLibrary_defaultTerrainMaterial self, ObjectVector output)
|
3246
3246
|
|
3247
3247
|
Parameters
|
3248
3248
|
----------
|
3249
3249
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
3250
3250
|
|
3251
3251
|
"""
|
3252
|
-
return _TerrainSwig.
|
3252
|
+
return _TerrainSwig.Terrain_MaterialLibrary_defaultTerrainMaterial_extractObjectFieldsTo(self, output)
|
3253
3253
|
|
3254
3254
|
def extractEntriesTo(self, output):
|
3255
3255
|
r"""
|
3256
|
-
extractEntriesTo(
|
3256
|
+
extractEntriesTo(Terrain_MaterialLibrary_defaultTerrainMaterial self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
3257
3257
|
|
3258
3258
|
Parameters
|
3259
3259
|
----------
|
3260
3260
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
3261
3261
|
|
3262
3262
|
"""
|
3263
|
-
return _TerrainSwig.
|
3263
|
+
return _TerrainSwig.Terrain_MaterialLibrary_defaultTerrainMaterial_extractEntriesTo(self, output)
|
3264
3264
|
|
3265
3265
|
def triggerOnInit(self, context):
|
3266
3266
|
r"""
|
3267
|
-
triggerOnInit(
|
3267
|
+
triggerOnInit(Terrain_MaterialLibrary_defaultTerrainMaterial self, openplx::RuntimeContext const & context)
|
3268
3268
|
|
3269
3269
|
Parameters
|
3270
3270
|
----------
|
3271
3271
|
context: openplx::RuntimeContext const &
|
3272
3272
|
|
3273
3273
|
"""
|
3274
|
-
return _TerrainSwig.
|
3275
|
-
__swig_destroy__ = _TerrainSwig.
|
3274
|
+
return _TerrainSwig.Terrain_MaterialLibrary_defaultTerrainMaterial_triggerOnInit(self, context)
|
3275
|
+
__swig_destroy__ = _TerrainSwig.delete_Terrain_MaterialLibrary_defaultTerrainMaterial
|
3276
3276
|
|
3277
|
-
# Register
|
3278
|
-
_TerrainSwig.
|
3277
|
+
# Register Terrain_MaterialLibrary_defaultTerrainMaterial in _TerrainSwig:
|
3278
|
+
_TerrainSwig.Terrain_MaterialLibrary_defaultTerrainMaterial_swigregister(Terrain_MaterialLibrary_defaultTerrainMaterial)
|
3279
3279
|
|
3280
|
-
class
|
3280
|
+
class Terrain_MaterialLibrary_dirt_1(Terrain_TerrainMaterial):
|
3281
3281
|
r"""Proxy of C++ openplx::Terrain::MaterialLibrary::dirt_1 class."""
|
3282
3282
|
|
3283
3283
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
3284
3284
|
__repr__ = _swig_repr
|
3285
3285
|
|
3286
3286
|
def __init__(self):
|
3287
|
-
r"""__init__(
|
3288
|
-
_TerrainSwig.
|
3287
|
+
r"""__init__(Terrain_MaterialLibrary_dirt_1 self) -> Terrain_MaterialLibrary_dirt_1"""
|
3288
|
+
_TerrainSwig.Terrain_MaterialLibrary_dirt_1_swiginit(self, _TerrainSwig.new_Terrain_MaterialLibrary_dirt_1())
|
3289
3289
|
|
3290
3290
|
def setDynamic(self, key, value):
|
3291
3291
|
r"""
|
3292
|
-
setDynamic(
|
3292
|
+
setDynamic(Terrain_MaterialLibrary_dirt_1 self, std::string const & key, Any value)
|
3293
3293
|
|
3294
3294
|
Parameters
|
3295
3295
|
----------
|
@@ -3297,22 +3297,22 @@ class MaterialLibrary_dirt_1(TerrainMaterial):
|
|
3297
3297
|
value: openplx::Core::Any &&
|
3298
3298
|
|
3299
3299
|
"""
|
3300
|
-
return _TerrainSwig.
|
3300
|
+
return _TerrainSwig.Terrain_MaterialLibrary_dirt_1_setDynamic(self, key, value)
|
3301
3301
|
|
3302
3302
|
def getDynamic(self, key):
|
3303
3303
|
r"""
|
3304
|
-
getDynamic(
|
3304
|
+
getDynamic(Terrain_MaterialLibrary_dirt_1 self, std::string const & key) -> Any
|
3305
3305
|
|
3306
3306
|
Parameters
|
3307
3307
|
----------
|
3308
3308
|
key: std::string const &
|
3309
3309
|
|
3310
3310
|
"""
|
3311
|
-
return _TerrainSwig.
|
3311
|
+
return _TerrainSwig.Terrain_MaterialLibrary_dirt_1_getDynamic(self, key)
|
3312
3312
|
|
3313
3313
|
def callDynamic(self, key, args):
|
3314
3314
|
r"""
|
3315
|
-
callDynamic(
|
3315
|
+
callDynamic(Terrain_MaterialLibrary_dirt_1 self, std::string const & key, AnyVector args) -> Any
|
3316
3316
|
|
3317
3317
|
Parameters
|
3318
3318
|
----------
|
@@ -3320,58 +3320,58 @@ class MaterialLibrary_dirt_1(TerrainMaterial):
|
|
3320
3320
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
3321
3321
|
|
3322
3322
|
"""
|
3323
|
-
return _TerrainSwig.
|
3323
|
+
return _TerrainSwig.Terrain_MaterialLibrary_dirt_1_callDynamic(self, key, args)
|
3324
3324
|
|
3325
3325
|
def extractObjectFieldsTo(self, output):
|
3326
3326
|
r"""
|
3327
|
-
extractObjectFieldsTo(
|
3327
|
+
extractObjectFieldsTo(Terrain_MaterialLibrary_dirt_1 self, ObjectVector output)
|
3328
3328
|
|
3329
3329
|
Parameters
|
3330
3330
|
----------
|
3331
3331
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
3332
3332
|
|
3333
3333
|
"""
|
3334
|
-
return _TerrainSwig.
|
3334
|
+
return _TerrainSwig.Terrain_MaterialLibrary_dirt_1_extractObjectFieldsTo(self, output)
|
3335
3335
|
|
3336
3336
|
def extractEntriesTo(self, output):
|
3337
3337
|
r"""
|
3338
|
-
extractEntriesTo(
|
3338
|
+
extractEntriesTo(Terrain_MaterialLibrary_dirt_1 self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
3339
3339
|
|
3340
3340
|
Parameters
|
3341
3341
|
----------
|
3342
3342
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
3343
3343
|
|
3344
3344
|
"""
|
3345
|
-
return _TerrainSwig.
|
3345
|
+
return _TerrainSwig.Terrain_MaterialLibrary_dirt_1_extractEntriesTo(self, output)
|
3346
3346
|
|
3347
3347
|
def triggerOnInit(self, context):
|
3348
3348
|
r"""
|
3349
|
-
triggerOnInit(
|
3349
|
+
triggerOnInit(Terrain_MaterialLibrary_dirt_1 self, openplx::RuntimeContext const & context)
|
3350
3350
|
|
3351
3351
|
Parameters
|
3352
3352
|
----------
|
3353
3353
|
context: openplx::RuntimeContext const &
|
3354
3354
|
|
3355
3355
|
"""
|
3356
|
-
return _TerrainSwig.
|
3357
|
-
__swig_destroy__ = _TerrainSwig.
|
3356
|
+
return _TerrainSwig.Terrain_MaterialLibrary_dirt_1_triggerOnInit(self, context)
|
3357
|
+
__swig_destroy__ = _TerrainSwig.delete_Terrain_MaterialLibrary_dirt_1
|
3358
3358
|
|
3359
|
-
# Register
|
3360
|
-
_TerrainSwig.
|
3359
|
+
# Register Terrain_MaterialLibrary_dirt_1 in _TerrainSwig:
|
3360
|
+
_TerrainSwig.Terrain_MaterialLibrary_dirt_1_swigregister(Terrain_MaterialLibrary_dirt_1)
|
3361
3361
|
|
3362
|
-
class
|
3362
|
+
class Terrain_MaterialLibrary_gravel_1(Terrain_TerrainMaterial):
|
3363
3363
|
r"""Proxy of C++ openplx::Terrain::MaterialLibrary::gravel_1 class."""
|
3364
3364
|
|
3365
3365
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
3366
3366
|
__repr__ = _swig_repr
|
3367
3367
|
|
3368
3368
|
def __init__(self):
|
3369
|
-
r"""__init__(
|
3370
|
-
_TerrainSwig.
|
3369
|
+
r"""__init__(Terrain_MaterialLibrary_gravel_1 self) -> Terrain_MaterialLibrary_gravel_1"""
|
3370
|
+
_TerrainSwig.Terrain_MaterialLibrary_gravel_1_swiginit(self, _TerrainSwig.new_Terrain_MaterialLibrary_gravel_1())
|
3371
3371
|
|
3372
3372
|
def setDynamic(self, key, value):
|
3373
3373
|
r"""
|
3374
|
-
setDynamic(
|
3374
|
+
setDynamic(Terrain_MaterialLibrary_gravel_1 self, std::string const & key, Any value)
|
3375
3375
|
|
3376
3376
|
Parameters
|
3377
3377
|
----------
|
@@ -3379,22 +3379,22 @@ class MaterialLibrary_gravel_1(TerrainMaterial):
|
|
3379
3379
|
value: openplx::Core::Any &&
|
3380
3380
|
|
3381
3381
|
"""
|
3382
|
-
return _TerrainSwig.
|
3382
|
+
return _TerrainSwig.Terrain_MaterialLibrary_gravel_1_setDynamic(self, key, value)
|
3383
3383
|
|
3384
3384
|
def getDynamic(self, key):
|
3385
3385
|
r"""
|
3386
|
-
getDynamic(
|
3386
|
+
getDynamic(Terrain_MaterialLibrary_gravel_1 self, std::string const & key) -> Any
|
3387
3387
|
|
3388
3388
|
Parameters
|
3389
3389
|
----------
|
3390
3390
|
key: std::string const &
|
3391
3391
|
|
3392
3392
|
"""
|
3393
|
-
return _TerrainSwig.
|
3393
|
+
return _TerrainSwig.Terrain_MaterialLibrary_gravel_1_getDynamic(self, key)
|
3394
3394
|
|
3395
3395
|
def callDynamic(self, key, args):
|
3396
3396
|
r"""
|
3397
|
-
callDynamic(
|
3397
|
+
callDynamic(Terrain_MaterialLibrary_gravel_1 self, std::string const & key, AnyVector args) -> Any
|
3398
3398
|
|
3399
3399
|
Parameters
|
3400
3400
|
----------
|
@@ -3402,58 +3402,58 @@ class MaterialLibrary_gravel_1(TerrainMaterial):
|
|
3402
3402
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
3403
3403
|
|
3404
3404
|
"""
|
3405
|
-
return _TerrainSwig.
|
3405
|
+
return _TerrainSwig.Terrain_MaterialLibrary_gravel_1_callDynamic(self, key, args)
|
3406
3406
|
|
3407
3407
|
def extractObjectFieldsTo(self, output):
|
3408
3408
|
r"""
|
3409
|
-
extractObjectFieldsTo(
|
3409
|
+
extractObjectFieldsTo(Terrain_MaterialLibrary_gravel_1 self, ObjectVector output)
|
3410
3410
|
|
3411
3411
|
Parameters
|
3412
3412
|
----------
|
3413
3413
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
3414
3414
|
|
3415
3415
|
"""
|
3416
|
-
return _TerrainSwig.
|
3416
|
+
return _TerrainSwig.Terrain_MaterialLibrary_gravel_1_extractObjectFieldsTo(self, output)
|
3417
3417
|
|
3418
3418
|
def extractEntriesTo(self, output):
|
3419
3419
|
r"""
|
3420
|
-
extractEntriesTo(
|
3420
|
+
extractEntriesTo(Terrain_MaterialLibrary_gravel_1 self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
3421
3421
|
|
3422
3422
|
Parameters
|
3423
3423
|
----------
|
3424
3424
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
3425
3425
|
|
3426
3426
|
"""
|
3427
|
-
return _TerrainSwig.
|
3427
|
+
return _TerrainSwig.Terrain_MaterialLibrary_gravel_1_extractEntriesTo(self, output)
|
3428
3428
|
|
3429
3429
|
def triggerOnInit(self, context):
|
3430
3430
|
r"""
|
3431
|
-
triggerOnInit(
|
3431
|
+
triggerOnInit(Terrain_MaterialLibrary_gravel_1 self, openplx::RuntimeContext const & context)
|
3432
3432
|
|
3433
3433
|
Parameters
|
3434
3434
|
----------
|
3435
3435
|
context: openplx::RuntimeContext const &
|
3436
3436
|
|
3437
3437
|
"""
|
3438
|
-
return _TerrainSwig.
|
3439
|
-
__swig_destroy__ = _TerrainSwig.
|
3438
|
+
return _TerrainSwig.Terrain_MaterialLibrary_gravel_1_triggerOnInit(self, context)
|
3439
|
+
__swig_destroy__ = _TerrainSwig.delete_Terrain_MaterialLibrary_gravel_1
|
3440
3440
|
|
3441
|
-
# Register
|
3442
|
-
_TerrainSwig.
|
3441
|
+
# Register Terrain_MaterialLibrary_gravel_1 in _TerrainSwig:
|
3442
|
+
_TerrainSwig.Terrain_MaterialLibrary_gravel_1_swigregister(Terrain_MaterialLibrary_gravel_1)
|
3443
3443
|
|
3444
|
-
class
|
3444
|
+
class Terrain_MaterialLibrary_iron_pellets(Terrain_TerrainMaterial):
|
3445
3445
|
r"""Proxy of C++ openplx::Terrain::MaterialLibrary::iron_pellets class."""
|
3446
3446
|
|
3447
3447
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
3448
3448
|
__repr__ = _swig_repr
|
3449
3449
|
|
3450
3450
|
def __init__(self):
|
3451
|
-
r"""__init__(
|
3452
|
-
_TerrainSwig.
|
3451
|
+
r"""__init__(Terrain_MaterialLibrary_iron_pellets self) -> Terrain_MaterialLibrary_iron_pellets"""
|
3452
|
+
_TerrainSwig.Terrain_MaterialLibrary_iron_pellets_swiginit(self, _TerrainSwig.new_Terrain_MaterialLibrary_iron_pellets())
|
3453
3453
|
|
3454
3454
|
def setDynamic(self, key, value):
|
3455
3455
|
r"""
|
3456
|
-
setDynamic(
|
3456
|
+
setDynamic(Terrain_MaterialLibrary_iron_pellets self, std::string const & key, Any value)
|
3457
3457
|
|
3458
3458
|
Parameters
|
3459
3459
|
----------
|
@@ -3461,22 +3461,22 @@ class MaterialLibrary_iron_pellets(TerrainMaterial):
|
|
3461
3461
|
value: openplx::Core::Any &&
|
3462
3462
|
|
3463
3463
|
"""
|
3464
|
-
return _TerrainSwig.
|
3464
|
+
return _TerrainSwig.Terrain_MaterialLibrary_iron_pellets_setDynamic(self, key, value)
|
3465
3465
|
|
3466
3466
|
def getDynamic(self, key):
|
3467
3467
|
r"""
|
3468
|
-
getDynamic(
|
3468
|
+
getDynamic(Terrain_MaterialLibrary_iron_pellets self, std::string const & key) -> Any
|
3469
3469
|
|
3470
3470
|
Parameters
|
3471
3471
|
----------
|
3472
3472
|
key: std::string const &
|
3473
3473
|
|
3474
3474
|
"""
|
3475
|
-
return _TerrainSwig.
|
3475
|
+
return _TerrainSwig.Terrain_MaterialLibrary_iron_pellets_getDynamic(self, key)
|
3476
3476
|
|
3477
3477
|
def callDynamic(self, key, args):
|
3478
3478
|
r"""
|
3479
|
-
callDynamic(
|
3479
|
+
callDynamic(Terrain_MaterialLibrary_iron_pellets self, std::string const & key, AnyVector args) -> Any
|
3480
3480
|
|
3481
3481
|
Parameters
|
3482
3482
|
----------
|
@@ -3484,58 +3484,58 @@ class MaterialLibrary_iron_pellets(TerrainMaterial):
|
|
3484
3484
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
3485
3485
|
|
3486
3486
|
"""
|
3487
|
-
return _TerrainSwig.
|
3487
|
+
return _TerrainSwig.Terrain_MaterialLibrary_iron_pellets_callDynamic(self, key, args)
|
3488
3488
|
|
3489
3489
|
def extractObjectFieldsTo(self, output):
|
3490
3490
|
r"""
|
3491
|
-
extractObjectFieldsTo(
|
3491
|
+
extractObjectFieldsTo(Terrain_MaterialLibrary_iron_pellets self, ObjectVector output)
|
3492
3492
|
|
3493
3493
|
Parameters
|
3494
3494
|
----------
|
3495
3495
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
3496
3496
|
|
3497
3497
|
"""
|
3498
|
-
return _TerrainSwig.
|
3498
|
+
return _TerrainSwig.Terrain_MaterialLibrary_iron_pellets_extractObjectFieldsTo(self, output)
|
3499
3499
|
|
3500
3500
|
def extractEntriesTo(self, output):
|
3501
3501
|
r"""
|
3502
|
-
extractEntriesTo(
|
3502
|
+
extractEntriesTo(Terrain_MaterialLibrary_iron_pellets self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
3503
3503
|
|
3504
3504
|
Parameters
|
3505
3505
|
----------
|
3506
3506
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
3507
3507
|
|
3508
3508
|
"""
|
3509
|
-
return _TerrainSwig.
|
3509
|
+
return _TerrainSwig.Terrain_MaterialLibrary_iron_pellets_extractEntriesTo(self, output)
|
3510
3510
|
|
3511
3511
|
def triggerOnInit(self, context):
|
3512
3512
|
r"""
|
3513
|
-
triggerOnInit(
|
3513
|
+
triggerOnInit(Terrain_MaterialLibrary_iron_pellets self, openplx::RuntimeContext const & context)
|
3514
3514
|
|
3515
3515
|
Parameters
|
3516
3516
|
----------
|
3517
3517
|
context: openplx::RuntimeContext const &
|
3518
3518
|
|
3519
3519
|
"""
|
3520
|
-
return _TerrainSwig.
|
3521
|
-
__swig_destroy__ = _TerrainSwig.
|
3520
|
+
return _TerrainSwig.Terrain_MaterialLibrary_iron_pellets_triggerOnInit(self, context)
|
3521
|
+
__swig_destroy__ = _TerrainSwig.delete_Terrain_MaterialLibrary_iron_pellets
|
3522
3522
|
|
3523
|
-
# Register
|
3524
|
-
_TerrainSwig.
|
3523
|
+
# Register Terrain_MaterialLibrary_iron_pellets in _TerrainSwig:
|
3524
|
+
_TerrainSwig.Terrain_MaterialLibrary_iron_pellets_swigregister(Terrain_MaterialLibrary_iron_pellets)
|
3525
3525
|
|
3526
|
-
class
|
3526
|
+
class Terrain_MaterialLibrary_sand_1(Terrain_TerrainMaterial):
|
3527
3527
|
r"""Proxy of C++ openplx::Terrain::MaterialLibrary::sand_1 class."""
|
3528
3528
|
|
3529
3529
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
3530
3530
|
__repr__ = _swig_repr
|
3531
3531
|
|
3532
3532
|
def __init__(self):
|
3533
|
-
r"""__init__(
|
3534
|
-
_TerrainSwig.
|
3533
|
+
r"""__init__(Terrain_MaterialLibrary_sand_1 self) -> Terrain_MaterialLibrary_sand_1"""
|
3534
|
+
_TerrainSwig.Terrain_MaterialLibrary_sand_1_swiginit(self, _TerrainSwig.new_Terrain_MaterialLibrary_sand_1())
|
3535
3535
|
|
3536
3536
|
def setDynamic(self, key, value):
|
3537
3537
|
r"""
|
3538
|
-
setDynamic(
|
3538
|
+
setDynamic(Terrain_MaterialLibrary_sand_1 self, std::string const & key, Any value)
|
3539
3539
|
|
3540
3540
|
Parameters
|
3541
3541
|
----------
|
@@ -3543,22 +3543,22 @@ class MaterialLibrary_sand_1(TerrainMaterial):
|
|
3543
3543
|
value: openplx::Core::Any &&
|
3544
3544
|
|
3545
3545
|
"""
|
3546
|
-
return _TerrainSwig.
|
3546
|
+
return _TerrainSwig.Terrain_MaterialLibrary_sand_1_setDynamic(self, key, value)
|
3547
3547
|
|
3548
3548
|
def getDynamic(self, key):
|
3549
3549
|
r"""
|
3550
|
-
getDynamic(
|
3550
|
+
getDynamic(Terrain_MaterialLibrary_sand_1 self, std::string const & key) -> Any
|
3551
3551
|
|
3552
3552
|
Parameters
|
3553
3553
|
----------
|
3554
3554
|
key: std::string const &
|
3555
3555
|
|
3556
3556
|
"""
|
3557
|
-
return _TerrainSwig.
|
3557
|
+
return _TerrainSwig.Terrain_MaterialLibrary_sand_1_getDynamic(self, key)
|
3558
3558
|
|
3559
3559
|
def callDynamic(self, key, args):
|
3560
3560
|
r"""
|
3561
|
-
callDynamic(
|
3561
|
+
callDynamic(Terrain_MaterialLibrary_sand_1 self, std::string const & key, AnyVector args) -> Any
|
3562
3562
|
|
3563
3563
|
Parameters
|
3564
3564
|
----------
|
@@ -3566,58 +3566,58 @@ class MaterialLibrary_sand_1(TerrainMaterial):
|
|
3566
3566
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
3567
3567
|
|
3568
3568
|
"""
|
3569
|
-
return _TerrainSwig.
|
3569
|
+
return _TerrainSwig.Terrain_MaterialLibrary_sand_1_callDynamic(self, key, args)
|
3570
3570
|
|
3571
3571
|
def extractObjectFieldsTo(self, output):
|
3572
3572
|
r"""
|
3573
|
-
extractObjectFieldsTo(
|
3573
|
+
extractObjectFieldsTo(Terrain_MaterialLibrary_sand_1 self, ObjectVector output)
|
3574
3574
|
|
3575
3575
|
Parameters
|
3576
3576
|
----------
|
3577
3577
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
3578
3578
|
|
3579
3579
|
"""
|
3580
|
-
return _TerrainSwig.
|
3580
|
+
return _TerrainSwig.Terrain_MaterialLibrary_sand_1_extractObjectFieldsTo(self, output)
|
3581
3581
|
|
3582
3582
|
def extractEntriesTo(self, output):
|
3583
3583
|
r"""
|
3584
|
-
extractEntriesTo(
|
3584
|
+
extractEntriesTo(Terrain_MaterialLibrary_sand_1 self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
3585
3585
|
|
3586
3586
|
Parameters
|
3587
3587
|
----------
|
3588
3588
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
3589
3589
|
|
3590
3590
|
"""
|
3591
|
-
return _TerrainSwig.
|
3591
|
+
return _TerrainSwig.Terrain_MaterialLibrary_sand_1_extractEntriesTo(self, output)
|
3592
3592
|
|
3593
3593
|
def triggerOnInit(self, context):
|
3594
3594
|
r"""
|
3595
|
-
triggerOnInit(
|
3595
|
+
triggerOnInit(Terrain_MaterialLibrary_sand_1 self, openplx::RuntimeContext const & context)
|
3596
3596
|
|
3597
3597
|
Parameters
|
3598
3598
|
----------
|
3599
3599
|
context: openplx::RuntimeContext const &
|
3600
3600
|
|
3601
3601
|
"""
|
3602
|
-
return _TerrainSwig.
|
3603
|
-
__swig_destroy__ = _TerrainSwig.
|
3602
|
+
return _TerrainSwig.Terrain_MaterialLibrary_sand_1_triggerOnInit(self, context)
|
3603
|
+
__swig_destroy__ = _TerrainSwig.delete_Terrain_MaterialLibrary_sand_1
|
3604
3604
|
|
3605
|
-
# Register
|
3606
|
-
_TerrainSwig.
|
3605
|
+
# Register Terrain_MaterialLibrary_sand_1 in _TerrainSwig:
|
3606
|
+
_TerrainSwig.Terrain_MaterialLibrary_sand_1_swigregister(Terrain_MaterialLibrary_sand_1)
|
3607
3607
|
|
3608
|
-
class
|
3608
|
+
class Terrain_MaterialLibrary_wet_sand(Terrain_TerrainMaterial):
|
3609
3609
|
r"""Proxy of C++ openplx::Terrain::MaterialLibrary::wet_sand class."""
|
3610
3610
|
|
3611
3611
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
3612
3612
|
__repr__ = _swig_repr
|
3613
3613
|
|
3614
3614
|
def __init__(self):
|
3615
|
-
r"""__init__(
|
3616
|
-
_TerrainSwig.
|
3615
|
+
r"""__init__(Terrain_MaterialLibrary_wet_sand self) -> Terrain_MaterialLibrary_wet_sand"""
|
3616
|
+
_TerrainSwig.Terrain_MaterialLibrary_wet_sand_swiginit(self, _TerrainSwig.new_Terrain_MaterialLibrary_wet_sand())
|
3617
3617
|
|
3618
3618
|
def setDynamic(self, key, value):
|
3619
3619
|
r"""
|
3620
|
-
setDynamic(
|
3620
|
+
setDynamic(Terrain_MaterialLibrary_wet_sand self, std::string const & key, Any value)
|
3621
3621
|
|
3622
3622
|
Parameters
|
3623
3623
|
----------
|
@@ -3625,22 +3625,22 @@ class MaterialLibrary_wet_sand(TerrainMaterial):
|
|
3625
3625
|
value: openplx::Core::Any &&
|
3626
3626
|
|
3627
3627
|
"""
|
3628
|
-
return _TerrainSwig.
|
3628
|
+
return _TerrainSwig.Terrain_MaterialLibrary_wet_sand_setDynamic(self, key, value)
|
3629
3629
|
|
3630
3630
|
def getDynamic(self, key):
|
3631
3631
|
r"""
|
3632
|
-
getDynamic(
|
3632
|
+
getDynamic(Terrain_MaterialLibrary_wet_sand self, std::string const & key) -> Any
|
3633
3633
|
|
3634
3634
|
Parameters
|
3635
3635
|
----------
|
3636
3636
|
key: std::string const &
|
3637
3637
|
|
3638
3638
|
"""
|
3639
|
-
return _TerrainSwig.
|
3639
|
+
return _TerrainSwig.Terrain_MaterialLibrary_wet_sand_getDynamic(self, key)
|
3640
3640
|
|
3641
3641
|
def callDynamic(self, key, args):
|
3642
3642
|
r"""
|
3643
|
-
callDynamic(
|
3643
|
+
callDynamic(Terrain_MaterialLibrary_wet_sand self, std::string const & key, AnyVector args) -> Any
|
3644
3644
|
|
3645
3645
|
Parameters
|
3646
3646
|
----------
|
@@ -3648,74 +3648,74 @@ class MaterialLibrary_wet_sand(TerrainMaterial):
|
|
3648
3648
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
3649
3649
|
|
3650
3650
|
"""
|
3651
|
-
return _TerrainSwig.
|
3651
|
+
return _TerrainSwig.Terrain_MaterialLibrary_wet_sand_callDynamic(self, key, args)
|
3652
3652
|
|
3653
3653
|
def extractObjectFieldsTo(self, output):
|
3654
3654
|
r"""
|
3655
|
-
extractObjectFieldsTo(
|
3655
|
+
extractObjectFieldsTo(Terrain_MaterialLibrary_wet_sand self, ObjectVector output)
|
3656
3656
|
|
3657
3657
|
Parameters
|
3658
3658
|
----------
|
3659
3659
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
3660
3660
|
|
3661
3661
|
"""
|
3662
|
-
return _TerrainSwig.
|
3662
|
+
return _TerrainSwig.Terrain_MaterialLibrary_wet_sand_extractObjectFieldsTo(self, output)
|
3663
3663
|
|
3664
3664
|
def extractEntriesTo(self, output):
|
3665
3665
|
r"""
|
3666
|
-
extractEntriesTo(
|
3666
|
+
extractEntriesTo(Terrain_MaterialLibrary_wet_sand self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
3667
3667
|
|
3668
3668
|
Parameters
|
3669
3669
|
----------
|
3670
3670
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
3671
3671
|
|
3672
3672
|
"""
|
3673
|
-
return _TerrainSwig.
|
3673
|
+
return _TerrainSwig.Terrain_MaterialLibrary_wet_sand_extractEntriesTo(self, output)
|
3674
3674
|
|
3675
3675
|
def triggerOnInit(self, context):
|
3676
3676
|
r"""
|
3677
|
-
triggerOnInit(
|
3677
|
+
triggerOnInit(Terrain_MaterialLibrary_wet_sand self, openplx::RuntimeContext const & context)
|
3678
3678
|
|
3679
3679
|
Parameters
|
3680
3680
|
----------
|
3681
3681
|
context: openplx::RuntimeContext const &
|
3682
3682
|
|
3683
3683
|
"""
|
3684
|
-
return _TerrainSwig.
|
3685
|
-
__swig_destroy__ = _TerrainSwig.
|
3684
|
+
return _TerrainSwig.Terrain_MaterialLibrary_wet_sand_triggerOnInit(self, context)
|
3685
|
+
__swig_destroy__ = _TerrainSwig.delete_Terrain_MaterialLibrary_wet_sand
|
3686
3686
|
|
3687
|
-
# Register
|
3688
|
-
_TerrainSwig.
|
3687
|
+
# Register Terrain_MaterialLibrary_wet_sand in _TerrainSwig:
|
3688
|
+
_TerrainSwig.Terrain_MaterialLibrary_wet_sand_swigregister(Terrain_MaterialLibrary_wet_sand)
|
3689
3689
|
|
3690
|
-
class
|
3690
|
+
class Terrain_Shovel(openplx.Core.Object):
|
3691
3691
|
r"""Proxy of C++ openplx::Terrain::Shovel class."""
|
3692
3692
|
|
3693
3693
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
3694
3694
|
__repr__ = _swig_repr
|
3695
3695
|
|
3696
3696
|
def __init__(self):
|
3697
|
-
r"""__init__(
|
3698
|
-
_TerrainSwig.
|
3697
|
+
r"""__init__(Terrain_Shovel self) -> Terrain_Shovel"""
|
3698
|
+
_TerrainSwig.Terrain_Shovel_swiginit(self, _TerrainSwig.new_Terrain_Shovel())
|
3699
3699
|
|
3700
3700
|
def body(self):
|
3701
|
-
r"""body(
|
3702
|
-
return _TerrainSwig.
|
3701
|
+
r"""body(Terrain_Shovel self) -> std::shared_ptr< openplx::Physics3D::Bodies::RigidBody >"""
|
3702
|
+
return _TerrainSwig.Terrain_Shovel_body(self)
|
3703
3703
|
|
3704
3704
|
def top_edge(self):
|
3705
|
-
r"""top_edge(
|
3706
|
-
return _TerrainSwig.
|
3705
|
+
r"""top_edge(Terrain_Shovel self) -> std::shared_ptr< openplx::Math::Line >"""
|
3706
|
+
return _TerrainSwig.Terrain_Shovel_top_edge(self)
|
3707
3707
|
|
3708
3708
|
def cutting_edge(self):
|
3709
|
-
r"""cutting_edge(
|
3710
|
-
return _TerrainSwig.
|
3709
|
+
r"""cutting_edge(Terrain_Shovel self) -> std::shared_ptr< openplx::Math::Line >"""
|
3710
|
+
return _TerrainSwig.Terrain_Shovel_cutting_edge(self)
|
3711
3711
|
|
3712
3712
|
def cutting_direction(self):
|
3713
|
-
r"""cutting_direction(
|
3714
|
-
return _TerrainSwig.
|
3713
|
+
r"""cutting_direction(Terrain_Shovel self) -> std::shared_ptr< openplx::Math::Vec3 >"""
|
3714
|
+
return _TerrainSwig.Terrain_Shovel_cutting_direction(self)
|
3715
3715
|
|
3716
3716
|
def setDynamic(self, key, value):
|
3717
3717
|
r"""
|
3718
|
-
setDynamic(
|
3718
|
+
setDynamic(Terrain_Shovel self, std::string const & key, Any value)
|
3719
3719
|
|
3720
3720
|
Parameters
|
3721
3721
|
----------
|
@@ -3723,22 +3723,22 @@ class Shovel(openplx.Core.Object):
|
|
3723
3723
|
value: openplx::Core::Any &&
|
3724
3724
|
|
3725
3725
|
"""
|
3726
|
-
return _TerrainSwig.
|
3726
|
+
return _TerrainSwig.Terrain_Shovel_setDynamic(self, key, value)
|
3727
3727
|
|
3728
3728
|
def getDynamic(self, key):
|
3729
3729
|
r"""
|
3730
|
-
getDynamic(
|
3730
|
+
getDynamic(Terrain_Shovel self, std::string const & key) -> Any
|
3731
3731
|
|
3732
3732
|
Parameters
|
3733
3733
|
----------
|
3734
3734
|
key: std::string const &
|
3735
3735
|
|
3736
3736
|
"""
|
3737
|
-
return _TerrainSwig.
|
3737
|
+
return _TerrainSwig.Terrain_Shovel_getDynamic(self, key)
|
3738
3738
|
|
3739
3739
|
def callDynamic(self, key, args):
|
3740
3740
|
r"""
|
3741
|
-
callDynamic(
|
3741
|
+
callDynamic(Terrain_Shovel self, std::string const & key, AnyVector args) -> Any
|
3742
3742
|
|
3743
3743
|
Parameters
|
3744
3744
|
----------
|
@@ -3746,78 +3746,78 @@ class Shovel(openplx.Core.Object):
|
|
3746
3746
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
3747
3747
|
|
3748
3748
|
"""
|
3749
|
-
return _TerrainSwig.
|
3749
|
+
return _TerrainSwig.Terrain_Shovel_callDynamic(self, key, args)
|
3750
3750
|
|
3751
3751
|
def extractObjectFieldsTo(self, output):
|
3752
3752
|
r"""
|
3753
|
-
extractObjectFieldsTo(
|
3753
|
+
extractObjectFieldsTo(Terrain_Shovel self, ObjectVector output)
|
3754
3754
|
|
3755
3755
|
Parameters
|
3756
3756
|
----------
|
3757
3757
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
3758
3758
|
|
3759
3759
|
"""
|
3760
|
-
return _TerrainSwig.
|
3760
|
+
return _TerrainSwig.Terrain_Shovel_extractObjectFieldsTo(self, output)
|
3761
3761
|
|
3762
3762
|
def extractEntriesTo(self, output):
|
3763
3763
|
r"""
|
3764
|
-
extractEntriesTo(
|
3764
|
+
extractEntriesTo(Terrain_Shovel self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
3765
3765
|
|
3766
3766
|
Parameters
|
3767
3767
|
----------
|
3768
3768
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
3769
3769
|
|
3770
3770
|
"""
|
3771
|
-
return _TerrainSwig.
|
3771
|
+
return _TerrainSwig.Terrain_Shovel_extractEntriesTo(self, output)
|
3772
3772
|
|
3773
3773
|
def triggerOnInit(self, context):
|
3774
3774
|
r"""
|
3775
|
-
triggerOnInit(
|
3775
|
+
triggerOnInit(Terrain_Shovel self, openplx::RuntimeContext const & context)
|
3776
3776
|
|
3777
3777
|
Parameters
|
3778
3778
|
----------
|
3779
3779
|
context: openplx::RuntimeContext const &
|
3780
3780
|
|
3781
3781
|
"""
|
3782
|
-
return _TerrainSwig.
|
3783
|
-
__swig_destroy__ = _TerrainSwig.
|
3782
|
+
return _TerrainSwig.Terrain_Shovel_triggerOnInit(self, context)
|
3783
|
+
__swig_destroy__ = _TerrainSwig.delete_Terrain_Shovel
|
3784
3784
|
|
3785
|
-
# Register
|
3786
|
-
_TerrainSwig.
|
3785
|
+
# Register Terrain_Shovel in _TerrainSwig:
|
3786
|
+
_TerrainSwig.Terrain_Shovel_swigregister(Terrain_Shovel)
|
3787
3787
|
|
3788
|
-
class
|
3788
|
+
class Terrain_Terrain(openplx.Physics3D.Physics3D_Bodies_Body):
|
3789
3789
|
r"""Proxy of C++ openplx::Terrain::Terrain class."""
|
3790
3790
|
|
3791
3791
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
3792
3792
|
__repr__ = _swig_repr
|
3793
3793
|
|
3794
3794
|
def __init__(self):
|
3795
|
-
r"""__init__(
|
3796
|
-
_TerrainSwig.
|
3795
|
+
r"""__init__(Terrain_Terrain self) -> Terrain_Terrain"""
|
3796
|
+
_TerrainSwig.Terrain_Terrain_swiginit(self, _TerrainSwig.new_Terrain_Terrain())
|
3797
3797
|
|
3798
3798
|
def num_elements_x(self):
|
3799
|
-
r"""num_elements_x(
|
3800
|
-
return _TerrainSwig.
|
3799
|
+
r"""num_elements_x(Terrain_Terrain self) -> int64_t"""
|
3800
|
+
return _TerrainSwig.Terrain_Terrain_num_elements_x(self)
|
3801
3801
|
|
3802
3802
|
def num_elements_y(self):
|
3803
|
-
r"""num_elements_y(
|
3804
|
-
return _TerrainSwig.
|
3803
|
+
r"""num_elements_y(Terrain_Terrain self) -> int64_t"""
|
3804
|
+
return _TerrainSwig.Terrain_Terrain_num_elements_y(self)
|
3805
3805
|
|
3806
3806
|
def element_size(self):
|
3807
|
-
r"""element_size(
|
3808
|
-
return _TerrainSwig.
|
3807
|
+
r"""element_size(Terrain_Terrain self) -> double"""
|
3808
|
+
return _TerrainSwig.Terrain_Terrain_element_size(self)
|
3809
3809
|
|
3810
3810
|
def max_depth(self):
|
3811
|
-
r"""max_depth(
|
3812
|
-
return _TerrainSwig.
|
3811
|
+
r"""max_depth(Terrain_Terrain self) -> double"""
|
3812
|
+
return _TerrainSwig.Terrain_Terrain_max_depth(self)
|
3813
3813
|
|
3814
3814
|
def material(self):
|
3815
|
-
r"""material(
|
3816
|
-
return _TerrainSwig.
|
3815
|
+
r"""material(Terrain_Terrain self) -> std::shared_ptr< openplx::Terrain::TerrainMaterial >"""
|
3816
|
+
return _TerrainSwig.Terrain_Terrain_material(self)
|
3817
3817
|
|
3818
3818
|
def setDynamic(self, key, value):
|
3819
3819
|
r"""
|
3820
|
-
setDynamic(
|
3820
|
+
setDynamic(Terrain_Terrain self, std::string const & key, Any value)
|
3821
3821
|
|
3822
3822
|
Parameters
|
3823
3823
|
----------
|
@@ -3825,22 +3825,22 @@ class Terrain(openplx.Physics3D.Bodies_Body):
|
|
3825
3825
|
value: openplx::Core::Any &&
|
3826
3826
|
|
3827
3827
|
"""
|
3828
|
-
return _TerrainSwig.
|
3828
|
+
return _TerrainSwig.Terrain_Terrain_setDynamic(self, key, value)
|
3829
3829
|
|
3830
3830
|
def getDynamic(self, key):
|
3831
3831
|
r"""
|
3832
|
-
getDynamic(
|
3832
|
+
getDynamic(Terrain_Terrain self, std::string const & key) -> Any
|
3833
3833
|
|
3834
3834
|
Parameters
|
3835
3835
|
----------
|
3836
3836
|
key: std::string const &
|
3837
3837
|
|
3838
3838
|
"""
|
3839
|
-
return _TerrainSwig.
|
3839
|
+
return _TerrainSwig.Terrain_Terrain_getDynamic(self, key)
|
3840
3840
|
|
3841
3841
|
def callDynamic(self, key, args):
|
3842
3842
|
r"""
|
3843
|
-
callDynamic(
|
3843
|
+
callDynamic(Terrain_Terrain self, std::string const & key, AnyVector args) -> Any
|
3844
3844
|
|
3845
3845
|
Parameters
|
3846
3846
|
----------
|
@@ -3848,44 +3848,44 @@ class Terrain(openplx.Physics3D.Bodies_Body):
|
|
3848
3848
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
3849
3849
|
|
3850
3850
|
"""
|
3851
|
-
return _TerrainSwig.
|
3851
|
+
return _TerrainSwig.Terrain_Terrain_callDynamic(self, key, args)
|
3852
3852
|
|
3853
3853
|
def extractObjectFieldsTo(self, output):
|
3854
3854
|
r"""
|
3855
|
-
extractObjectFieldsTo(
|
3855
|
+
extractObjectFieldsTo(Terrain_Terrain self, ObjectVector output)
|
3856
3856
|
|
3857
3857
|
Parameters
|
3858
3858
|
----------
|
3859
3859
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
3860
3860
|
|
3861
3861
|
"""
|
3862
|
-
return _TerrainSwig.
|
3862
|
+
return _TerrainSwig.Terrain_Terrain_extractObjectFieldsTo(self, output)
|
3863
3863
|
|
3864
3864
|
def extractEntriesTo(self, output):
|
3865
3865
|
r"""
|
3866
|
-
extractEntriesTo(
|
3866
|
+
extractEntriesTo(Terrain_Terrain self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
3867
3867
|
|
3868
3868
|
Parameters
|
3869
3869
|
----------
|
3870
3870
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
3871
3871
|
|
3872
3872
|
"""
|
3873
|
-
return _TerrainSwig.
|
3873
|
+
return _TerrainSwig.Terrain_Terrain_extractEntriesTo(self, output)
|
3874
3874
|
|
3875
3875
|
def triggerOnInit(self, context):
|
3876
3876
|
r"""
|
3877
|
-
triggerOnInit(
|
3877
|
+
triggerOnInit(Terrain_Terrain self, openplx::RuntimeContext const & context)
|
3878
3878
|
|
3879
3879
|
Parameters
|
3880
3880
|
----------
|
3881
3881
|
context: openplx::RuntimeContext const &
|
3882
3882
|
|
3883
3883
|
"""
|
3884
|
-
return _TerrainSwig.
|
3885
|
-
__swig_destroy__ = _TerrainSwig.
|
3884
|
+
return _TerrainSwig.Terrain_Terrain_triggerOnInit(self, context)
|
3885
|
+
__swig_destroy__ = _TerrainSwig.delete_Terrain_Terrain
|
3886
3886
|
|
3887
|
-
# Register
|
3888
|
-
_TerrainSwig.
|
3887
|
+
# Register Terrain_Terrain in _TerrainSwig:
|
3888
|
+
_TerrainSwig.Terrain_Terrain_swigregister(Terrain_Terrain)
|
3889
3889
|
|
3890
3890
|
|
3891
3891
|
|