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/Visuals.py
CHANGED
@@ -3107,27 +3107,27 @@ class Visuals_Materials_TextureMaterial_Vector(object):
|
|
3107
3107
|
# Register Visuals_Materials_TextureMaterial_Vector in _VisualsSwig:
|
3108
3108
|
_VisualsSwig.Visuals_Materials_TextureMaterial_Vector_swigregister(Visuals_Materials_TextureMaterial_Vector)
|
3109
3109
|
|
3110
|
-
class
|
3110
|
+
class Visuals_Geometries_Geometry(openplx.Core.Object):
|
3111
3111
|
r"""Proxy of C++ openplx::Visuals::Geometries::Geometry class."""
|
3112
3112
|
|
3113
3113
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
3114
3114
|
__repr__ = _swig_repr
|
3115
3115
|
|
3116
3116
|
def __init__(self):
|
3117
|
-
r"""__init__(
|
3118
|
-
_VisualsSwig.
|
3117
|
+
r"""__init__(Visuals_Geometries_Geometry self) -> Visuals_Geometries_Geometry"""
|
3118
|
+
_VisualsSwig.Visuals_Geometries_Geometry_swiginit(self, _VisualsSwig.new_Visuals_Geometries_Geometry())
|
3119
3119
|
|
3120
3120
|
def local_transform(self):
|
3121
|
-
r"""local_transform(
|
3122
|
-
return _VisualsSwig.
|
3121
|
+
r"""local_transform(Visuals_Geometries_Geometry self) -> std::shared_ptr< openplx::Math::AffineTransform >"""
|
3122
|
+
return _VisualsSwig.Visuals_Geometries_Geometry_local_transform(self)
|
3123
3123
|
|
3124
3124
|
def material(self):
|
3125
|
-
r"""material(
|
3126
|
-
return _VisualsSwig.
|
3125
|
+
r"""material(Visuals_Geometries_Geometry self) -> std::shared_ptr< openplx::Visuals::Materials::Material >"""
|
3126
|
+
return _VisualsSwig.Visuals_Geometries_Geometry_material(self)
|
3127
3127
|
|
3128
3128
|
def setDynamic(self, key, value):
|
3129
3129
|
r"""
|
3130
|
-
setDynamic(
|
3130
|
+
setDynamic(Visuals_Geometries_Geometry self, std::string const & key, Any value)
|
3131
3131
|
|
3132
3132
|
Parameters
|
3133
3133
|
----------
|
@@ -3135,22 +3135,22 @@ class Geometries_Geometry(openplx.Core.Object):
|
|
3135
3135
|
value: openplx::Core::Any &&
|
3136
3136
|
|
3137
3137
|
"""
|
3138
|
-
return _VisualsSwig.
|
3138
|
+
return _VisualsSwig.Visuals_Geometries_Geometry_setDynamic(self, key, value)
|
3139
3139
|
|
3140
3140
|
def getDynamic(self, key):
|
3141
3141
|
r"""
|
3142
|
-
getDynamic(
|
3142
|
+
getDynamic(Visuals_Geometries_Geometry self, std::string const & key) -> Any
|
3143
3143
|
|
3144
3144
|
Parameters
|
3145
3145
|
----------
|
3146
3146
|
key: std::string const &
|
3147
3147
|
|
3148
3148
|
"""
|
3149
|
-
return _VisualsSwig.
|
3149
|
+
return _VisualsSwig.Visuals_Geometries_Geometry_getDynamic(self, key)
|
3150
3150
|
|
3151
3151
|
def callDynamic(self, key, args):
|
3152
3152
|
r"""
|
3153
|
-
callDynamic(
|
3153
|
+
callDynamic(Visuals_Geometries_Geometry self, std::string const & key, AnyVector args) -> Any
|
3154
3154
|
|
3155
3155
|
Parameters
|
3156
3156
|
----------
|
@@ -3158,62 +3158,62 @@ class Geometries_Geometry(openplx.Core.Object):
|
|
3158
3158
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
3159
3159
|
|
3160
3160
|
"""
|
3161
|
-
return _VisualsSwig.
|
3161
|
+
return _VisualsSwig.Visuals_Geometries_Geometry_callDynamic(self, key, args)
|
3162
3162
|
|
3163
3163
|
def extractObjectFieldsTo(self, output):
|
3164
3164
|
r"""
|
3165
|
-
extractObjectFieldsTo(
|
3165
|
+
extractObjectFieldsTo(Visuals_Geometries_Geometry self, ObjectVector output)
|
3166
3166
|
|
3167
3167
|
Parameters
|
3168
3168
|
----------
|
3169
3169
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
3170
3170
|
|
3171
3171
|
"""
|
3172
|
-
return _VisualsSwig.
|
3172
|
+
return _VisualsSwig.Visuals_Geometries_Geometry_extractObjectFieldsTo(self, output)
|
3173
3173
|
|
3174
3174
|
def extractEntriesTo(self, output):
|
3175
3175
|
r"""
|
3176
|
-
extractEntriesTo(
|
3176
|
+
extractEntriesTo(Visuals_Geometries_Geometry self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
3177
3177
|
|
3178
3178
|
Parameters
|
3179
3179
|
----------
|
3180
3180
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
3181
3181
|
|
3182
3182
|
"""
|
3183
|
-
return _VisualsSwig.
|
3183
|
+
return _VisualsSwig.Visuals_Geometries_Geometry_extractEntriesTo(self, output)
|
3184
3184
|
|
3185
3185
|
def triggerOnInit(self, context):
|
3186
3186
|
r"""
|
3187
|
-
triggerOnInit(
|
3187
|
+
triggerOnInit(Visuals_Geometries_Geometry self, openplx::RuntimeContext const & context)
|
3188
3188
|
|
3189
3189
|
Parameters
|
3190
3190
|
----------
|
3191
3191
|
context: openplx::RuntimeContext const &
|
3192
3192
|
|
3193
3193
|
"""
|
3194
|
-
return _VisualsSwig.
|
3195
|
-
__swig_destroy__ = _VisualsSwig.
|
3194
|
+
return _VisualsSwig.Visuals_Geometries_Geometry_triggerOnInit(self, context)
|
3195
|
+
__swig_destroy__ = _VisualsSwig.delete_Visuals_Geometries_Geometry
|
3196
3196
|
|
3197
|
-
# Register
|
3198
|
-
_VisualsSwig.
|
3197
|
+
# Register Visuals_Geometries_Geometry in _VisualsSwig:
|
3198
|
+
_VisualsSwig.Visuals_Geometries_Geometry_swigregister(Visuals_Geometries_Geometry)
|
3199
3199
|
|
3200
|
-
class
|
3200
|
+
class Visuals_Geometries_Box(Visuals_Geometries_Geometry):
|
3201
3201
|
r"""Proxy of C++ openplx::Visuals::Geometries::Box class."""
|
3202
3202
|
|
3203
3203
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
3204
3204
|
__repr__ = _swig_repr
|
3205
3205
|
|
3206
3206
|
def __init__(self):
|
3207
|
-
r"""__init__(
|
3208
|
-
_VisualsSwig.
|
3207
|
+
r"""__init__(Visuals_Geometries_Box self) -> Visuals_Geometries_Box"""
|
3208
|
+
_VisualsSwig.Visuals_Geometries_Box_swiginit(self, _VisualsSwig.new_Visuals_Geometries_Box())
|
3209
3209
|
|
3210
3210
|
def size(self):
|
3211
|
-
r"""size(
|
3212
|
-
return _VisualsSwig.
|
3211
|
+
r"""size(Visuals_Geometries_Box self) -> std::shared_ptr< openplx::Math::Vec3 >"""
|
3212
|
+
return _VisualsSwig.Visuals_Geometries_Box_size(self)
|
3213
3213
|
|
3214
3214
|
def setDynamic(self, key, value):
|
3215
3215
|
r"""
|
3216
|
-
setDynamic(
|
3216
|
+
setDynamic(Visuals_Geometries_Box self, std::string const & key, Any value)
|
3217
3217
|
|
3218
3218
|
Parameters
|
3219
3219
|
----------
|
@@ -3221,22 +3221,22 @@ class Geometries_Box(Geometries_Geometry):
|
|
3221
3221
|
value: openplx::Core::Any &&
|
3222
3222
|
|
3223
3223
|
"""
|
3224
|
-
return _VisualsSwig.
|
3224
|
+
return _VisualsSwig.Visuals_Geometries_Box_setDynamic(self, key, value)
|
3225
3225
|
|
3226
3226
|
def getDynamic(self, key):
|
3227
3227
|
r"""
|
3228
|
-
getDynamic(
|
3228
|
+
getDynamic(Visuals_Geometries_Box self, std::string const & key) -> Any
|
3229
3229
|
|
3230
3230
|
Parameters
|
3231
3231
|
----------
|
3232
3232
|
key: std::string const &
|
3233
3233
|
|
3234
3234
|
"""
|
3235
|
-
return _VisualsSwig.
|
3235
|
+
return _VisualsSwig.Visuals_Geometries_Box_getDynamic(self, key)
|
3236
3236
|
|
3237
3237
|
def callDynamic(self, key, args):
|
3238
3238
|
r"""
|
3239
|
-
callDynamic(
|
3239
|
+
callDynamic(Visuals_Geometries_Box self, std::string const & key, AnyVector args) -> Any
|
3240
3240
|
|
3241
3241
|
Parameters
|
3242
3242
|
----------
|
@@ -3244,58 +3244,58 @@ class Geometries_Box(Geometries_Geometry):
|
|
3244
3244
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
3245
3245
|
|
3246
3246
|
"""
|
3247
|
-
return _VisualsSwig.
|
3247
|
+
return _VisualsSwig.Visuals_Geometries_Box_callDynamic(self, key, args)
|
3248
3248
|
|
3249
3249
|
def extractObjectFieldsTo(self, output):
|
3250
3250
|
r"""
|
3251
|
-
extractObjectFieldsTo(
|
3251
|
+
extractObjectFieldsTo(Visuals_Geometries_Box self, ObjectVector output)
|
3252
3252
|
|
3253
3253
|
Parameters
|
3254
3254
|
----------
|
3255
3255
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
3256
3256
|
|
3257
3257
|
"""
|
3258
|
-
return _VisualsSwig.
|
3258
|
+
return _VisualsSwig.Visuals_Geometries_Box_extractObjectFieldsTo(self, output)
|
3259
3259
|
|
3260
3260
|
def extractEntriesTo(self, output):
|
3261
3261
|
r"""
|
3262
|
-
extractEntriesTo(
|
3262
|
+
extractEntriesTo(Visuals_Geometries_Box self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
3263
3263
|
|
3264
3264
|
Parameters
|
3265
3265
|
----------
|
3266
3266
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
3267
3267
|
|
3268
3268
|
"""
|
3269
|
-
return _VisualsSwig.
|
3269
|
+
return _VisualsSwig.Visuals_Geometries_Box_extractEntriesTo(self, output)
|
3270
3270
|
|
3271
3271
|
def triggerOnInit(self, context):
|
3272
3272
|
r"""
|
3273
|
-
triggerOnInit(
|
3273
|
+
triggerOnInit(Visuals_Geometries_Box self, openplx::RuntimeContext const & context)
|
3274
3274
|
|
3275
3275
|
Parameters
|
3276
3276
|
----------
|
3277
3277
|
context: openplx::RuntimeContext const &
|
3278
3278
|
|
3279
3279
|
"""
|
3280
|
-
return _VisualsSwig.
|
3281
|
-
__swig_destroy__ = _VisualsSwig.
|
3280
|
+
return _VisualsSwig.Visuals_Geometries_Box_triggerOnInit(self, context)
|
3281
|
+
__swig_destroy__ = _VisualsSwig.delete_Visuals_Geometries_Box
|
3282
3282
|
|
3283
|
-
# Register
|
3284
|
-
_VisualsSwig.
|
3283
|
+
# Register Visuals_Geometries_Box in _VisualsSwig:
|
3284
|
+
_VisualsSwig.Visuals_Geometries_Box_swigregister(Visuals_Geometries_Box)
|
3285
3285
|
|
3286
|
-
class
|
3286
|
+
class Visuals_Geometries_TriMeshGeometry(Visuals_Geometries_Geometry):
|
3287
3287
|
r"""Proxy of C++ openplx::Visuals::Geometries::TriMeshGeometry class."""
|
3288
3288
|
|
3289
3289
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
3290
3290
|
__repr__ = _swig_repr
|
3291
3291
|
|
3292
3292
|
def __init__(self):
|
3293
|
-
r"""__init__(
|
3294
|
-
_VisualsSwig.
|
3293
|
+
r"""__init__(Visuals_Geometries_TriMeshGeometry self) -> Visuals_Geometries_TriMeshGeometry"""
|
3294
|
+
_VisualsSwig.Visuals_Geometries_TriMeshGeometry_swiginit(self, _VisualsSwig.new_Visuals_Geometries_TriMeshGeometry())
|
3295
3295
|
|
3296
3296
|
def setDynamic(self, key, value):
|
3297
3297
|
r"""
|
3298
|
-
setDynamic(
|
3298
|
+
setDynamic(Visuals_Geometries_TriMeshGeometry self, std::string const & key, Any value)
|
3299
3299
|
|
3300
3300
|
Parameters
|
3301
3301
|
----------
|
@@ -3303,22 +3303,22 @@ class Geometries_TriMeshGeometry(Geometries_Geometry):
|
|
3303
3303
|
value: openplx::Core::Any &&
|
3304
3304
|
|
3305
3305
|
"""
|
3306
|
-
return _VisualsSwig.
|
3306
|
+
return _VisualsSwig.Visuals_Geometries_TriMeshGeometry_setDynamic(self, key, value)
|
3307
3307
|
|
3308
3308
|
def getDynamic(self, key):
|
3309
3309
|
r"""
|
3310
|
-
getDynamic(
|
3310
|
+
getDynamic(Visuals_Geometries_TriMeshGeometry self, std::string const & key) -> Any
|
3311
3311
|
|
3312
3312
|
Parameters
|
3313
3313
|
----------
|
3314
3314
|
key: std::string const &
|
3315
3315
|
|
3316
3316
|
"""
|
3317
|
-
return _VisualsSwig.
|
3317
|
+
return _VisualsSwig.Visuals_Geometries_TriMeshGeometry_getDynamic(self, key)
|
3318
3318
|
|
3319
3319
|
def callDynamic(self, key, args):
|
3320
3320
|
r"""
|
3321
|
-
callDynamic(
|
3321
|
+
callDynamic(Visuals_Geometries_TriMeshGeometry self, std::string const & key, AnyVector args) -> Any
|
3322
3322
|
|
3323
3323
|
Parameters
|
3324
3324
|
----------
|
@@ -3326,62 +3326,62 @@ class Geometries_TriMeshGeometry(Geometries_Geometry):
|
|
3326
3326
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
3327
3327
|
|
3328
3328
|
"""
|
3329
|
-
return _VisualsSwig.
|
3329
|
+
return _VisualsSwig.Visuals_Geometries_TriMeshGeometry_callDynamic(self, key, args)
|
3330
3330
|
|
3331
3331
|
def extractObjectFieldsTo(self, output):
|
3332
3332
|
r"""
|
3333
|
-
extractObjectFieldsTo(
|
3333
|
+
extractObjectFieldsTo(Visuals_Geometries_TriMeshGeometry self, ObjectVector output)
|
3334
3334
|
|
3335
3335
|
Parameters
|
3336
3336
|
----------
|
3337
3337
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
3338
3338
|
|
3339
3339
|
"""
|
3340
|
-
return _VisualsSwig.
|
3340
|
+
return _VisualsSwig.Visuals_Geometries_TriMeshGeometry_extractObjectFieldsTo(self, output)
|
3341
3341
|
|
3342
3342
|
def extractEntriesTo(self, output):
|
3343
3343
|
r"""
|
3344
|
-
extractEntriesTo(
|
3344
|
+
extractEntriesTo(Visuals_Geometries_TriMeshGeometry self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
3345
3345
|
|
3346
3346
|
Parameters
|
3347
3347
|
----------
|
3348
3348
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
3349
3349
|
|
3350
3350
|
"""
|
3351
|
-
return _VisualsSwig.
|
3351
|
+
return _VisualsSwig.Visuals_Geometries_TriMeshGeometry_extractEntriesTo(self, output)
|
3352
3352
|
|
3353
3353
|
def triggerOnInit(self, context):
|
3354
3354
|
r"""
|
3355
|
-
triggerOnInit(
|
3355
|
+
triggerOnInit(Visuals_Geometries_TriMeshGeometry self, openplx::RuntimeContext const & context)
|
3356
3356
|
|
3357
3357
|
Parameters
|
3358
3358
|
----------
|
3359
3359
|
context: openplx::RuntimeContext const &
|
3360
3360
|
|
3361
3361
|
"""
|
3362
|
-
return _VisualsSwig.
|
3363
|
-
__swig_destroy__ = _VisualsSwig.
|
3362
|
+
return _VisualsSwig.Visuals_Geometries_TriMeshGeometry_triggerOnInit(self, context)
|
3363
|
+
__swig_destroy__ = _VisualsSwig.delete_Visuals_Geometries_TriMeshGeometry
|
3364
3364
|
|
3365
|
-
# Register
|
3366
|
-
_VisualsSwig.
|
3365
|
+
# Register Visuals_Geometries_TriMeshGeometry in _VisualsSwig:
|
3366
|
+
_VisualsSwig.Visuals_Geometries_TriMeshGeometry_swigregister(Visuals_Geometries_TriMeshGeometry)
|
3367
3367
|
|
3368
|
-
class
|
3368
|
+
class Visuals_Geometries_ConvexMesh(Visuals_Geometries_TriMeshGeometry):
|
3369
3369
|
r"""Proxy of C++ openplx::Visuals::Geometries::ConvexMesh class."""
|
3370
3370
|
|
3371
3371
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
3372
3372
|
__repr__ = _swig_repr
|
3373
3373
|
|
3374
3374
|
def __init__(self):
|
3375
|
-
r"""__init__(
|
3376
|
-
_VisualsSwig.
|
3375
|
+
r"""__init__(Visuals_Geometries_ConvexMesh self) -> Visuals_Geometries_ConvexMesh"""
|
3376
|
+
_VisualsSwig.Visuals_Geometries_ConvexMesh_swiginit(self, _VisualsSwig.new_Visuals_Geometries_ConvexMesh())
|
3377
3377
|
|
3378
3378
|
def vertices(self):
|
3379
|
-
r"""vertices(
|
3380
|
-
return _VisualsSwig.
|
3379
|
+
r"""vertices(Visuals_Geometries_ConvexMesh self) -> Math_Vec3_Vector"""
|
3380
|
+
return _VisualsSwig.Visuals_Geometries_ConvexMesh_vertices(self)
|
3381
3381
|
|
3382
3382
|
def setDynamic(self, key, value):
|
3383
3383
|
r"""
|
3384
|
-
setDynamic(
|
3384
|
+
setDynamic(Visuals_Geometries_ConvexMesh self, std::string const & key, Any value)
|
3385
3385
|
|
3386
3386
|
Parameters
|
3387
3387
|
----------
|
@@ -3389,22 +3389,22 @@ class Geometries_ConvexMesh(Geometries_TriMeshGeometry):
|
|
3389
3389
|
value: openplx::Core::Any &&
|
3390
3390
|
|
3391
3391
|
"""
|
3392
|
-
return _VisualsSwig.
|
3392
|
+
return _VisualsSwig.Visuals_Geometries_ConvexMesh_setDynamic(self, key, value)
|
3393
3393
|
|
3394
3394
|
def getDynamic(self, key):
|
3395
3395
|
r"""
|
3396
|
-
getDynamic(
|
3396
|
+
getDynamic(Visuals_Geometries_ConvexMesh self, std::string const & key) -> Any
|
3397
3397
|
|
3398
3398
|
Parameters
|
3399
3399
|
----------
|
3400
3400
|
key: std::string const &
|
3401
3401
|
|
3402
3402
|
"""
|
3403
|
-
return _VisualsSwig.
|
3403
|
+
return _VisualsSwig.Visuals_Geometries_ConvexMesh_getDynamic(self, key)
|
3404
3404
|
|
3405
3405
|
def callDynamic(self, key, args):
|
3406
3406
|
r"""
|
3407
|
-
callDynamic(
|
3407
|
+
callDynamic(Visuals_Geometries_ConvexMesh self, std::string const & key, AnyVector args) -> Any
|
3408
3408
|
|
3409
3409
|
Parameters
|
3410
3410
|
----------
|
@@ -3412,66 +3412,66 @@ class Geometries_ConvexMesh(Geometries_TriMeshGeometry):
|
|
3412
3412
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
3413
3413
|
|
3414
3414
|
"""
|
3415
|
-
return _VisualsSwig.
|
3415
|
+
return _VisualsSwig.Visuals_Geometries_ConvexMesh_callDynamic(self, key, args)
|
3416
3416
|
|
3417
3417
|
def extractObjectFieldsTo(self, output):
|
3418
3418
|
r"""
|
3419
|
-
extractObjectFieldsTo(
|
3419
|
+
extractObjectFieldsTo(Visuals_Geometries_ConvexMesh self, ObjectVector output)
|
3420
3420
|
|
3421
3421
|
Parameters
|
3422
3422
|
----------
|
3423
3423
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
3424
3424
|
|
3425
3425
|
"""
|
3426
|
-
return _VisualsSwig.
|
3426
|
+
return _VisualsSwig.Visuals_Geometries_ConvexMesh_extractObjectFieldsTo(self, output)
|
3427
3427
|
|
3428
3428
|
def extractEntriesTo(self, output):
|
3429
3429
|
r"""
|
3430
|
-
extractEntriesTo(
|
3430
|
+
extractEntriesTo(Visuals_Geometries_ConvexMesh self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
3431
3431
|
|
3432
3432
|
Parameters
|
3433
3433
|
----------
|
3434
3434
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
3435
3435
|
|
3436
3436
|
"""
|
3437
|
-
return _VisualsSwig.
|
3437
|
+
return _VisualsSwig.Visuals_Geometries_ConvexMesh_extractEntriesTo(self, output)
|
3438
3438
|
|
3439
3439
|
def triggerOnInit(self, context):
|
3440
3440
|
r"""
|
3441
|
-
triggerOnInit(
|
3441
|
+
triggerOnInit(Visuals_Geometries_ConvexMesh self, openplx::RuntimeContext const & context)
|
3442
3442
|
|
3443
3443
|
Parameters
|
3444
3444
|
----------
|
3445
3445
|
context: openplx::RuntimeContext const &
|
3446
3446
|
|
3447
3447
|
"""
|
3448
|
-
return _VisualsSwig.
|
3449
|
-
__swig_destroy__ = _VisualsSwig.
|
3448
|
+
return _VisualsSwig.Visuals_Geometries_ConvexMesh_triggerOnInit(self, context)
|
3449
|
+
__swig_destroy__ = _VisualsSwig.delete_Visuals_Geometries_ConvexMesh
|
3450
3450
|
|
3451
|
-
# Register
|
3452
|
-
_VisualsSwig.
|
3451
|
+
# Register Visuals_Geometries_ConvexMesh in _VisualsSwig:
|
3452
|
+
_VisualsSwig.Visuals_Geometries_ConvexMesh_swigregister(Visuals_Geometries_ConvexMesh)
|
3453
3453
|
|
3454
|
-
class
|
3454
|
+
class Visuals_Geometries_Cylinder(Visuals_Geometries_Geometry):
|
3455
3455
|
r"""Proxy of C++ openplx::Visuals::Geometries::Cylinder class."""
|
3456
3456
|
|
3457
3457
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
3458
3458
|
__repr__ = _swig_repr
|
3459
3459
|
|
3460
3460
|
def __init__(self):
|
3461
|
-
r"""__init__(
|
3462
|
-
_VisualsSwig.
|
3461
|
+
r"""__init__(Visuals_Geometries_Cylinder self) -> Visuals_Geometries_Cylinder"""
|
3462
|
+
_VisualsSwig.Visuals_Geometries_Cylinder_swiginit(self, _VisualsSwig.new_Visuals_Geometries_Cylinder())
|
3463
3463
|
|
3464
3464
|
def radius(self):
|
3465
|
-
r"""radius(
|
3466
|
-
return _VisualsSwig.
|
3465
|
+
r"""radius(Visuals_Geometries_Cylinder self) -> double"""
|
3466
|
+
return _VisualsSwig.Visuals_Geometries_Cylinder_radius(self)
|
3467
3467
|
|
3468
3468
|
def height(self):
|
3469
|
-
r"""height(
|
3470
|
-
return _VisualsSwig.
|
3469
|
+
r"""height(Visuals_Geometries_Cylinder self) -> double"""
|
3470
|
+
return _VisualsSwig.Visuals_Geometries_Cylinder_height(self)
|
3471
3471
|
|
3472
3472
|
def setDynamic(self, key, value):
|
3473
3473
|
r"""
|
3474
|
-
setDynamic(
|
3474
|
+
setDynamic(Visuals_Geometries_Cylinder self, std::string const & key, Any value)
|
3475
3475
|
|
3476
3476
|
Parameters
|
3477
3477
|
----------
|
@@ -3479,22 +3479,22 @@ class Geometries_Cylinder(Geometries_Geometry):
|
|
3479
3479
|
value: openplx::Core::Any &&
|
3480
3480
|
|
3481
3481
|
"""
|
3482
|
-
return _VisualsSwig.
|
3482
|
+
return _VisualsSwig.Visuals_Geometries_Cylinder_setDynamic(self, key, value)
|
3483
3483
|
|
3484
3484
|
def getDynamic(self, key):
|
3485
3485
|
r"""
|
3486
|
-
getDynamic(
|
3486
|
+
getDynamic(Visuals_Geometries_Cylinder self, std::string const & key) -> Any
|
3487
3487
|
|
3488
3488
|
Parameters
|
3489
3489
|
----------
|
3490
3490
|
key: std::string const &
|
3491
3491
|
|
3492
3492
|
"""
|
3493
|
-
return _VisualsSwig.
|
3493
|
+
return _VisualsSwig.Visuals_Geometries_Cylinder_getDynamic(self, key)
|
3494
3494
|
|
3495
3495
|
def callDynamic(self, key, args):
|
3496
3496
|
r"""
|
3497
|
-
callDynamic(
|
3497
|
+
callDynamic(Visuals_Geometries_Cylinder self, std::string const & key, AnyVector args) -> Any
|
3498
3498
|
|
3499
3499
|
Parameters
|
3500
3500
|
----------
|
@@ -3502,66 +3502,66 @@ class Geometries_Cylinder(Geometries_Geometry):
|
|
3502
3502
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
3503
3503
|
|
3504
3504
|
"""
|
3505
|
-
return _VisualsSwig.
|
3505
|
+
return _VisualsSwig.Visuals_Geometries_Cylinder_callDynamic(self, key, args)
|
3506
3506
|
|
3507
3507
|
def extractObjectFieldsTo(self, output):
|
3508
3508
|
r"""
|
3509
|
-
extractObjectFieldsTo(
|
3509
|
+
extractObjectFieldsTo(Visuals_Geometries_Cylinder self, ObjectVector output)
|
3510
3510
|
|
3511
3511
|
Parameters
|
3512
3512
|
----------
|
3513
3513
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
3514
3514
|
|
3515
3515
|
"""
|
3516
|
-
return _VisualsSwig.
|
3516
|
+
return _VisualsSwig.Visuals_Geometries_Cylinder_extractObjectFieldsTo(self, output)
|
3517
3517
|
|
3518
3518
|
def extractEntriesTo(self, output):
|
3519
3519
|
r"""
|
3520
|
-
extractEntriesTo(
|
3520
|
+
extractEntriesTo(Visuals_Geometries_Cylinder self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
3521
3521
|
|
3522
3522
|
Parameters
|
3523
3523
|
----------
|
3524
3524
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
3525
3525
|
|
3526
3526
|
"""
|
3527
|
-
return _VisualsSwig.
|
3527
|
+
return _VisualsSwig.Visuals_Geometries_Cylinder_extractEntriesTo(self, output)
|
3528
3528
|
|
3529
3529
|
def triggerOnInit(self, context):
|
3530
3530
|
r"""
|
3531
|
-
triggerOnInit(
|
3531
|
+
triggerOnInit(Visuals_Geometries_Cylinder self, openplx::RuntimeContext const & context)
|
3532
3532
|
|
3533
3533
|
Parameters
|
3534
3534
|
----------
|
3535
3535
|
context: openplx::RuntimeContext const &
|
3536
3536
|
|
3537
3537
|
"""
|
3538
|
-
return _VisualsSwig.
|
3539
|
-
__swig_destroy__ = _VisualsSwig.
|
3538
|
+
return _VisualsSwig.Visuals_Geometries_Cylinder_triggerOnInit(self, context)
|
3539
|
+
__swig_destroy__ = _VisualsSwig.delete_Visuals_Geometries_Cylinder
|
3540
3540
|
|
3541
|
-
# Register
|
3542
|
-
_VisualsSwig.
|
3541
|
+
# Register Visuals_Geometries_Cylinder in _VisualsSwig:
|
3542
|
+
_VisualsSwig.Visuals_Geometries_Cylinder_swigregister(Visuals_Geometries_Cylinder)
|
3543
3543
|
|
3544
|
-
class
|
3544
|
+
class Visuals_Geometries_ExternalTriMeshGeometry(Visuals_Geometries_TriMeshGeometry):
|
3545
3545
|
r"""Proxy of C++ openplx::Visuals::Geometries::ExternalTriMeshGeometry class."""
|
3546
3546
|
|
3547
3547
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
3548
3548
|
__repr__ = _swig_repr
|
3549
3549
|
|
3550
3550
|
def __init__(self):
|
3551
|
-
r"""__init__(
|
3552
|
-
_VisualsSwig.
|
3551
|
+
r"""__init__(Visuals_Geometries_ExternalTriMeshGeometry self) -> Visuals_Geometries_ExternalTriMeshGeometry"""
|
3552
|
+
_VisualsSwig.Visuals_Geometries_ExternalTriMeshGeometry_swiginit(self, _VisualsSwig.new_Visuals_Geometries_ExternalTriMeshGeometry())
|
3553
3553
|
|
3554
3554
|
def path(self):
|
3555
|
-
r"""path(
|
3556
|
-
return _VisualsSwig.
|
3555
|
+
r"""path(Visuals_Geometries_ExternalTriMeshGeometry self) -> std::string"""
|
3556
|
+
return _VisualsSwig.Visuals_Geometries_ExternalTriMeshGeometry_path(self)
|
3557
3557
|
|
3558
3558
|
def scale(self):
|
3559
|
-
r"""scale(
|
3560
|
-
return _VisualsSwig.
|
3559
|
+
r"""scale(Visuals_Geometries_ExternalTriMeshGeometry self) -> std::shared_ptr< openplx::Math::Vec3 >"""
|
3560
|
+
return _VisualsSwig.Visuals_Geometries_ExternalTriMeshGeometry_scale(self)
|
3561
3561
|
|
3562
3562
|
def setDynamic(self, key, value):
|
3563
3563
|
r"""
|
3564
|
-
setDynamic(
|
3564
|
+
setDynamic(Visuals_Geometries_ExternalTriMeshGeometry self, std::string const & key, Any value)
|
3565
3565
|
|
3566
3566
|
Parameters
|
3567
3567
|
----------
|
@@ -3569,22 +3569,22 @@ class Geometries_ExternalTriMeshGeometry(Geometries_TriMeshGeometry):
|
|
3569
3569
|
value: openplx::Core::Any &&
|
3570
3570
|
|
3571
3571
|
"""
|
3572
|
-
return _VisualsSwig.
|
3572
|
+
return _VisualsSwig.Visuals_Geometries_ExternalTriMeshGeometry_setDynamic(self, key, value)
|
3573
3573
|
|
3574
3574
|
def getDynamic(self, key):
|
3575
3575
|
r"""
|
3576
|
-
getDynamic(
|
3576
|
+
getDynamic(Visuals_Geometries_ExternalTriMeshGeometry self, std::string const & key) -> Any
|
3577
3577
|
|
3578
3578
|
Parameters
|
3579
3579
|
----------
|
3580
3580
|
key: std::string const &
|
3581
3581
|
|
3582
3582
|
"""
|
3583
|
-
return _VisualsSwig.
|
3583
|
+
return _VisualsSwig.Visuals_Geometries_ExternalTriMeshGeometry_getDynamic(self, key)
|
3584
3584
|
|
3585
3585
|
def callDynamic(self, key, args):
|
3586
3586
|
r"""
|
3587
|
-
callDynamic(
|
3587
|
+
callDynamic(Visuals_Geometries_ExternalTriMeshGeometry self, std::string const & key, AnyVector args) -> Any
|
3588
3588
|
|
3589
3589
|
Parameters
|
3590
3590
|
----------
|
@@ -3592,62 +3592,62 @@ class Geometries_ExternalTriMeshGeometry(Geometries_TriMeshGeometry):
|
|
3592
3592
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
3593
3593
|
|
3594
3594
|
"""
|
3595
|
-
return _VisualsSwig.
|
3595
|
+
return _VisualsSwig.Visuals_Geometries_ExternalTriMeshGeometry_callDynamic(self, key, args)
|
3596
3596
|
|
3597
3597
|
def extractObjectFieldsTo(self, output):
|
3598
3598
|
r"""
|
3599
|
-
extractObjectFieldsTo(
|
3599
|
+
extractObjectFieldsTo(Visuals_Geometries_ExternalTriMeshGeometry self, ObjectVector output)
|
3600
3600
|
|
3601
3601
|
Parameters
|
3602
3602
|
----------
|
3603
3603
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
3604
3604
|
|
3605
3605
|
"""
|
3606
|
-
return _VisualsSwig.
|
3606
|
+
return _VisualsSwig.Visuals_Geometries_ExternalTriMeshGeometry_extractObjectFieldsTo(self, output)
|
3607
3607
|
|
3608
3608
|
def extractEntriesTo(self, output):
|
3609
3609
|
r"""
|
3610
|
-
extractEntriesTo(
|
3610
|
+
extractEntriesTo(Visuals_Geometries_ExternalTriMeshGeometry self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
3611
3611
|
|
3612
3612
|
Parameters
|
3613
3613
|
----------
|
3614
3614
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
3615
3615
|
|
3616
3616
|
"""
|
3617
|
-
return _VisualsSwig.
|
3617
|
+
return _VisualsSwig.Visuals_Geometries_ExternalTriMeshGeometry_extractEntriesTo(self, output)
|
3618
3618
|
|
3619
3619
|
def triggerOnInit(self, context):
|
3620
3620
|
r"""
|
3621
|
-
triggerOnInit(
|
3621
|
+
triggerOnInit(Visuals_Geometries_ExternalTriMeshGeometry self, openplx::RuntimeContext const & context)
|
3622
3622
|
|
3623
3623
|
Parameters
|
3624
3624
|
----------
|
3625
3625
|
context: openplx::RuntimeContext const &
|
3626
3626
|
|
3627
3627
|
"""
|
3628
|
-
return _VisualsSwig.
|
3629
|
-
__swig_destroy__ = _VisualsSwig.
|
3628
|
+
return _VisualsSwig.Visuals_Geometries_ExternalTriMeshGeometry_triggerOnInit(self, context)
|
3629
|
+
__swig_destroy__ = _VisualsSwig.delete_Visuals_Geometries_ExternalTriMeshGeometry
|
3630
3630
|
|
3631
|
-
# Register
|
3632
|
-
_VisualsSwig.
|
3631
|
+
# Register Visuals_Geometries_ExternalTriMeshGeometry in _VisualsSwig:
|
3632
|
+
_VisualsSwig.Visuals_Geometries_ExternalTriMeshGeometry_swigregister(Visuals_Geometries_ExternalTriMeshGeometry)
|
3633
3633
|
|
3634
|
-
class
|
3634
|
+
class Visuals_Geometries_Sphere(Visuals_Geometries_Geometry):
|
3635
3635
|
r"""Proxy of C++ openplx::Visuals::Geometries::Sphere class."""
|
3636
3636
|
|
3637
3637
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
3638
3638
|
__repr__ = _swig_repr
|
3639
3639
|
|
3640
3640
|
def __init__(self):
|
3641
|
-
r"""__init__(
|
3642
|
-
_VisualsSwig.
|
3641
|
+
r"""__init__(Visuals_Geometries_Sphere self) -> Visuals_Geometries_Sphere"""
|
3642
|
+
_VisualsSwig.Visuals_Geometries_Sphere_swiginit(self, _VisualsSwig.new_Visuals_Geometries_Sphere())
|
3643
3643
|
|
3644
3644
|
def radius(self):
|
3645
|
-
r"""radius(
|
3646
|
-
return _VisualsSwig.
|
3645
|
+
r"""radius(Visuals_Geometries_Sphere self) -> double"""
|
3646
|
+
return _VisualsSwig.Visuals_Geometries_Sphere_radius(self)
|
3647
3647
|
|
3648
3648
|
def setDynamic(self, key, value):
|
3649
3649
|
r"""
|
3650
|
-
setDynamic(
|
3650
|
+
setDynamic(Visuals_Geometries_Sphere self, std::string const & key, Any value)
|
3651
3651
|
|
3652
3652
|
Parameters
|
3653
3653
|
----------
|
@@ -3655,22 +3655,22 @@ class Geometries_Sphere(Geometries_Geometry):
|
|
3655
3655
|
value: openplx::Core::Any &&
|
3656
3656
|
|
3657
3657
|
"""
|
3658
|
-
return _VisualsSwig.
|
3658
|
+
return _VisualsSwig.Visuals_Geometries_Sphere_setDynamic(self, key, value)
|
3659
3659
|
|
3660
3660
|
def getDynamic(self, key):
|
3661
3661
|
r"""
|
3662
|
-
getDynamic(
|
3662
|
+
getDynamic(Visuals_Geometries_Sphere self, std::string const & key) -> Any
|
3663
3663
|
|
3664
3664
|
Parameters
|
3665
3665
|
----------
|
3666
3666
|
key: std::string const &
|
3667
3667
|
|
3668
3668
|
"""
|
3669
|
-
return _VisualsSwig.
|
3669
|
+
return _VisualsSwig.Visuals_Geometries_Sphere_getDynamic(self, key)
|
3670
3670
|
|
3671
3671
|
def callDynamic(self, key, args):
|
3672
3672
|
r"""
|
3673
|
-
callDynamic(
|
3673
|
+
callDynamic(Visuals_Geometries_Sphere self, std::string const & key, AnyVector args) -> Any
|
3674
3674
|
|
3675
3675
|
Parameters
|
3676
3676
|
----------
|
@@ -3678,58 +3678,58 @@ class Geometries_Sphere(Geometries_Geometry):
|
|
3678
3678
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
3679
3679
|
|
3680
3680
|
"""
|
3681
|
-
return _VisualsSwig.
|
3681
|
+
return _VisualsSwig.Visuals_Geometries_Sphere_callDynamic(self, key, args)
|
3682
3682
|
|
3683
3683
|
def extractObjectFieldsTo(self, output):
|
3684
3684
|
r"""
|
3685
|
-
extractObjectFieldsTo(
|
3685
|
+
extractObjectFieldsTo(Visuals_Geometries_Sphere self, ObjectVector output)
|
3686
3686
|
|
3687
3687
|
Parameters
|
3688
3688
|
----------
|
3689
3689
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
3690
3690
|
|
3691
3691
|
"""
|
3692
|
-
return _VisualsSwig.
|
3692
|
+
return _VisualsSwig.Visuals_Geometries_Sphere_extractObjectFieldsTo(self, output)
|
3693
3693
|
|
3694
3694
|
def extractEntriesTo(self, output):
|
3695
3695
|
r"""
|
3696
|
-
extractEntriesTo(
|
3696
|
+
extractEntriesTo(Visuals_Geometries_Sphere self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
3697
3697
|
|
3698
3698
|
Parameters
|
3699
3699
|
----------
|
3700
3700
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
3701
3701
|
|
3702
3702
|
"""
|
3703
|
-
return _VisualsSwig.
|
3703
|
+
return _VisualsSwig.Visuals_Geometries_Sphere_extractEntriesTo(self, output)
|
3704
3704
|
|
3705
3705
|
def triggerOnInit(self, context):
|
3706
3706
|
r"""
|
3707
|
-
triggerOnInit(
|
3707
|
+
triggerOnInit(Visuals_Geometries_Sphere self, openplx::RuntimeContext const & context)
|
3708
3708
|
|
3709
3709
|
Parameters
|
3710
3710
|
----------
|
3711
3711
|
context: openplx::RuntimeContext const &
|
3712
3712
|
|
3713
3713
|
"""
|
3714
|
-
return _VisualsSwig.
|
3715
|
-
__swig_destroy__ = _VisualsSwig.
|
3714
|
+
return _VisualsSwig.Visuals_Geometries_Sphere_triggerOnInit(self, context)
|
3715
|
+
__swig_destroy__ = _VisualsSwig.delete_Visuals_Geometries_Sphere
|
3716
3716
|
|
3717
|
-
# Register
|
3718
|
-
_VisualsSwig.
|
3717
|
+
# Register Visuals_Geometries_Sphere in _VisualsSwig:
|
3718
|
+
_VisualsSwig.Visuals_Geometries_Sphere_swigregister(Visuals_Geometries_Sphere)
|
3719
3719
|
|
3720
|
-
class
|
3720
|
+
class Visuals_Materials_Material(openplx.Core.Object):
|
3721
3721
|
r"""Proxy of C++ openplx::Visuals::Materials::Material class."""
|
3722
3722
|
|
3723
3723
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
3724
3724
|
__repr__ = _swig_repr
|
3725
3725
|
|
3726
3726
|
def __init__(self):
|
3727
|
-
r"""__init__(
|
3728
|
-
_VisualsSwig.
|
3727
|
+
r"""__init__(Visuals_Materials_Material self) -> Visuals_Materials_Material"""
|
3728
|
+
_VisualsSwig.Visuals_Materials_Material_swiginit(self, _VisualsSwig.new_Visuals_Materials_Material())
|
3729
3729
|
|
3730
3730
|
def setDynamic(self, key, value):
|
3731
3731
|
r"""
|
3732
|
-
setDynamic(
|
3732
|
+
setDynamic(Visuals_Materials_Material self, std::string const & key, Any value)
|
3733
3733
|
|
3734
3734
|
Parameters
|
3735
3735
|
----------
|
@@ -3737,22 +3737,22 @@ class Materials_Material(openplx.Core.Object):
|
|
3737
3737
|
value: openplx::Core::Any &&
|
3738
3738
|
|
3739
3739
|
"""
|
3740
|
-
return _VisualsSwig.
|
3740
|
+
return _VisualsSwig.Visuals_Materials_Material_setDynamic(self, key, value)
|
3741
3741
|
|
3742
3742
|
def getDynamic(self, key):
|
3743
3743
|
r"""
|
3744
|
-
getDynamic(
|
3744
|
+
getDynamic(Visuals_Materials_Material self, std::string const & key) -> Any
|
3745
3745
|
|
3746
3746
|
Parameters
|
3747
3747
|
----------
|
3748
3748
|
key: std::string const &
|
3749
3749
|
|
3750
3750
|
"""
|
3751
|
-
return _VisualsSwig.
|
3751
|
+
return _VisualsSwig.Visuals_Materials_Material_getDynamic(self, key)
|
3752
3752
|
|
3753
3753
|
def callDynamic(self, key, args):
|
3754
3754
|
r"""
|
3755
|
-
callDynamic(
|
3755
|
+
callDynamic(Visuals_Materials_Material self, std::string const & key, AnyVector args) -> Any
|
3756
3756
|
|
3757
3757
|
Parameters
|
3758
3758
|
----------
|
@@ -3760,74 +3760,74 @@ class Materials_Material(openplx.Core.Object):
|
|
3760
3760
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
3761
3761
|
|
3762
3762
|
"""
|
3763
|
-
return _VisualsSwig.
|
3763
|
+
return _VisualsSwig.Visuals_Materials_Material_callDynamic(self, key, args)
|
3764
3764
|
|
3765
3765
|
def extractObjectFieldsTo(self, output):
|
3766
3766
|
r"""
|
3767
|
-
extractObjectFieldsTo(
|
3767
|
+
extractObjectFieldsTo(Visuals_Materials_Material self, ObjectVector output)
|
3768
3768
|
|
3769
3769
|
Parameters
|
3770
3770
|
----------
|
3771
3771
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
3772
3772
|
|
3773
3773
|
"""
|
3774
|
-
return _VisualsSwig.
|
3774
|
+
return _VisualsSwig.Visuals_Materials_Material_extractObjectFieldsTo(self, output)
|
3775
3775
|
|
3776
3776
|
def extractEntriesTo(self, output):
|
3777
3777
|
r"""
|
3778
|
-
extractEntriesTo(
|
3778
|
+
extractEntriesTo(Visuals_Materials_Material self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
3779
3779
|
|
3780
3780
|
Parameters
|
3781
3781
|
----------
|
3782
3782
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
3783
3783
|
|
3784
3784
|
"""
|
3785
|
-
return _VisualsSwig.
|
3785
|
+
return _VisualsSwig.Visuals_Materials_Material_extractEntriesTo(self, output)
|
3786
3786
|
|
3787
3787
|
def triggerOnInit(self, context):
|
3788
3788
|
r"""
|
3789
|
-
triggerOnInit(
|
3789
|
+
triggerOnInit(Visuals_Materials_Material self, openplx::RuntimeContext const & context)
|
3790
3790
|
|
3791
3791
|
Parameters
|
3792
3792
|
----------
|
3793
3793
|
context: openplx::RuntimeContext const &
|
3794
3794
|
|
3795
3795
|
"""
|
3796
|
-
return _VisualsSwig.
|
3797
|
-
__swig_destroy__ = _VisualsSwig.
|
3796
|
+
return _VisualsSwig.Visuals_Materials_Material_triggerOnInit(self, context)
|
3797
|
+
__swig_destroy__ = _VisualsSwig.delete_Visuals_Materials_Material
|
3798
3798
|
|
3799
|
-
# Register
|
3800
|
-
_VisualsSwig.
|
3799
|
+
# Register Visuals_Materials_Material in _VisualsSwig:
|
3800
|
+
_VisualsSwig.Visuals_Materials_Material_swigregister(Visuals_Materials_Material)
|
3801
3801
|
|
3802
|
-
class
|
3802
|
+
class Visuals_Materials_TextureMaterial(Visuals_Materials_Material):
|
3803
3803
|
r"""Proxy of C++ openplx::Visuals::Materials::TextureMaterial class."""
|
3804
3804
|
|
3805
3805
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
3806
3806
|
__repr__ = _swig_repr
|
3807
3807
|
|
3808
3808
|
def __init__(self):
|
3809
|
-
r"""__init__(
|
3810
|
-
_VisualsSwig.
|
3809
|
+
r"""__init__(Visuals_Materials_TextureMaterial self) -> Visuals_Materials_TextureMaterial"""
|
3810
|
+
_VisualsSwig.Visuals_Materials_TextureMaterial_swiginit(self, _VisualsSwig.new_Visuals_Materials_TextureMaterial())
|
3811
3811
|
|
3812
3812
|
def path(self):
|
3813
|
-
r"""path(
|
3814
|
-
return _VisualsSwig.
|
3813
|
+
r"""path(Visuals_Materials_TextureMaterial self) -> std::string"""
|
3814
|
+
return _VisualsSwig.Visuals_Materials_TextureMaterial_path(self)
|
3815
3815
|
|
3816
3816
|
def repeat(self):
|
3817
|
-
r"""repeat(
|
3818
|
-
return _VisualsSwig.
|
3817
|
+
r"""repeat(Visuals_Materials_TextureMaterial self) -> bool"""
|
3818
|
+
return _VisualsSwig.Visuals_Materials_TextureMaterial_repeat(self)
|
3819
3819
|
|
3820
3820
|
def scale_u(self):
|
3821
|
-
r"""scale_u(
|
3822
|
-
return _VisualsSwig.
|
3821
|
+
r"""scale_u(Visuals_Materials_TextureMaterial self) -> double"""
|
3822
|
+
return _VisualsSwig.Visuals_Materials_TextureMaterial_scale_u(self)
|
3823
3823
|
|
3824
3824
|
def scale_v(self):
|
3825
|
-
r"""scale_v(
|
3826
|
-
return _VisualsSwig.
|
3825
|
+
r"""scale_v(Visuals_Materials_TextureMaterial self) -> double"""
|
3826
|
+
return _VisualsSwig.Visuals_Materials_TextureMaterial_scale_v(self)
|
3827
3827
|
|
3828
3828
|
def setDynamic(self, key, value):
|
3829
3829
|
r"""
|
3830
|
-
setDynamic(
|
3830
|
+
setDynamic(Visuals_Materials_TextureMaterial self, std::string const & key, Any value)
|
3831
3831
|
|
3832
3832
|
Parameters
|
3833
3833
|
----------
|
@@ -3835,22 +3835,22 @@ class Materials_TextureMaterial(Materials_Material):
|
|
3835
3835
|
value: openplx::Core::Any &&
|
3836
3836
|
|
3837
3837
|
"""
|
3838
|
-
return _VisualsSwig.
|
3838
|
+
return _VisualsSwig.Visuals_Materials_TextureMaterial_setDynamic(self, key, value)
|
3839
3839
|
|
3840
3840
|
def getDynamic(self, key):
|
3841
3841
|
r"""
|
3842
|
-
getDynamic(
|
3842
|
+
getDynamic(Visuals_Materials_TextureMaterial self, std::string const & key) -> Any
|
3843
3843
|
|
3844
3844
|
Parameters
|
3845
3845
|
----------
|
3846
3846
|
key: std::string const &
|
3847
3847
|
|
3848
3848
|
"""
|
3849
|
-
return _VisualsSwig.
|
3849
|
+
return _VisualsSwig.Visuals_Materials_TextureMaterial_getDynamic(self, key)
|
3850
3850
|
|
3851
3851
|
def callDynamic(self, key, args):
|
3852
3852
|
r"""
|
3853
|
-
callDynamic(
|
3853
|
+
callDynamic(Visuals_Materials_TextureMaterial self, std::string const & key, AnyVector args) -> Any
|
3854
3854
|
|
3855
3855
|
Parameters
|
3856
3856
|
----------
|
@@ -3858,44 +3858,44 @@ class Materials_TextureMaterial(Materials_Material):
|
|
3858
3858
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
3859
3859
|
|
3860
3860
|
"""
|
3861
|
-
return _VisualsSwig.
|
3861
|
+
return _VisualsSwig.Visuals_Materials_TextureMaterial_callDynamic(self, key, args)
|
3862
3862
|
|
3863
3863
|
def extractObjectFieldsTo(self, output):
|
3864
3864
|
r"""
|
3865
|
-
extractObjectFieldsTo(
|
3865
|
+
extractObjectFieldsTo(Visuals_Materials_TextureMaterial self, ObjectVector output)
|
3866
3866
|
|
3867
3867
|
Parameters
|
3868
3868
|
----------
|
3869
3869
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
3870
3870
|
|
3871
3871
|
"""
|
3872
|
-
return _VisualsSwig.
|
3872
|
+
return _VisualsSwig.Visuals_Materials_TextureMaterial_extractObjectFieldsTo(self, output)
|
3873
3873
|
|
3874
3874
|
def extractEntriesTo(self, output):
|
3875
3875
|
r"""
|
3876
|
-
extractEntriesTo(
|
3876
|
+
extractEntriesTo(Visuals_Materials_TextureMaterial self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
3877
3877
|
|
3878
3878
|
Parameters
|
3879
3879
|
----------
|
3880
3880
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
3881
3881
|
|
3882
3882
|
"""
|
3883
|
-
return _VisualsSwig.
|
3883
|
+
return _VisualsSwig.Visuals_Materials_TextureMaterial_extractEntriesTo(self, output)
|
3884
3884
|
|
3885
3885
|
def triggerOnInit(self, context):
|
3886
3886
|
r"""
|
3887
|
-
triggerOnInit(
|
3887
|
+
triggerOnInit(Visuals_Materials_TextureMaterial self, openplx::RuntimeContext const & context)
|
3888
3888
|
|
3889
3889
|
Parameters
|
3890
3890
|
----------
|
3891
3891
|
context: openplx::RuntimeContext const &
|
3892
3892
|
|
3893
3893
|
"""
|
3894
|
-
return _VisualsSwig.
|
3895
|
-
__swig_destroy__ = _VisualsSwig.
|
3894
|
+
return _VisualsSwig.Visuals_Materials_TextureMaterial_triggerOnInit(self, context)
|
3895
|
+
__swig_destroy__ = _VisualsSwig.delete_Visuals_Materials_TextureMaterial
|
3896
3896
|
|
3897
|
-
# Register
|
3898
|
-
_VisualsSwig.
|
3897
|
+
# Register Visuals_Materials_TextureMaterial in _VisualsSwig:
|
3898
|
+
_VisualsSwig.Visuals_Materials_TextureMaterial_swigregister(Visuals_Materials_TextureMaterial)
|
3899
3899
|
|
3900
3900
|
|
3901
3901
|
|