agx-openplx 0.15.0__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.0.dist-info/METADATA +231 -0
- agx_openplx-0.15.0.dist-info/RECORD +41 -0
- agx_openplx-0.15.0.dist-info/WHEEL +4 -0
- agx_openplx-0.15.0.dist-info/entry_points.txt +8 -0
- openplx/Core.py +7781 -0
- openplx/DriveTrain.py +8574 -0
- openplx/Math.py +5372 -0
- openplx/Physics.py +36195 -0
- openplx/Physics1D.py +6732 -0
- openplx/Physics3D.py +42524 -0
- openplx/Robotics.py +15762 -0
- openplx/Simulation.py +1056 -0
- openplx/Terrain.py +3891 -0
- openplx/Urdf.py +654 -0
- openplx/Vehicles.py +8793 -0
- openplx/Visuals.py +3901 -0
- 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 +51 -0
- openplx/agxtoopenplx.py +55 -0
- openplx/anytoopenplx.py +44 -0
- openplx/api.py +1337 -0
- openplx/migrate.py +136 -0
- openplx/migration_hint.py +14 -0
- openplx/migrations.py +521 -0
- openplx/openplx_application.py +133 -0
- openplx/openplx_serialize.py +35 -0
- openplx/openplx_validate.py +57 -0
- openplx/openplx_view.py +14 -0
- openplx/versionaction.py +11 -0
openplx/Visuals.py
ADDED
@@ -0,0 +1,3901 @@
|
|
1
|
+
# This file was automatically generated by SWIG (http://www.swig.org).
|
2
|
+
# Version 4.0.2
|
3
|
+
#
|
4
|
+
# Do not make changes to this file unless you know what you are doing--modify
|
5
|
+
# the SWIG interface file instead.
|
6
|
+
|
7
|
+
from sys import version_info as _swig_python_version_info
|
8
|
+
if _swig_python_version_info < (2, 7, 0):
|
9
|
+
raise RuntimeError("Python 2.7 or later required")
|
10
|
+
|
11
|
+
# Import the low-level C/C++ module
|
12
|
+
if __package__ or "." in __name__:
|
13
|
+
from . import _VisualsSwig
|
14
|
+
else:
|
15
|
+
import _VisualsSwig
|
16
|
+
|
17
|
+
try:
|
18
|
+
import builtins as __builtin__
|
19
|
+
except ImportError:
|
20
|
+
import __builtin__
|
21
|
+
|
22
|
+
def _swig_repr(self):
|
23
|
+
try:
|
24
|
+
strthis = "proxy of " + self.this.__repr__()
|
25
|
+
except __builtin__.Exception:
|
26
|
+
strthis = ""
|
27
|
+
return "<%s.%s; %s >" % (self.__class__.__module__, self.__class__.__name__, strthis,)
|
28
|
+
|
29
|
+
|
30
|
+
def _swig_setattr_nondynamic_instance_variable(set):
|
31
|
+
def set_instance_attr(self, name, value):
|
32
|
+
if name == "thisown":
|
33
|
+
self.this.own(value)
|
34
|
+
elif name == "this":
|
35
|
+
set(self, name, value)
|
36
|
+
elif hasattr(self, name) and isinstance(getattr(type(self), name), property):
|
37
|
+
set(self, name, value)
|
38
|
+
else:
|
39
|
+
raise AttributeError("You cannot add instance attributes to %s" % self)
|
40
|
+
return set_instance_attr
|
41
|
+
|
42
|
+
|
43
|
+
def _swig_setattr_nondynamic_class_variable(set):
|
44
|
+
def set_class_attr(cls, name, value):
|
45
|
+
if hasattr(cls, name) and not isinstance(getattr(cls, name), property):
|
46
|
+
set(cls, name, value)
|
47
|
+
else:
|
48
|
+
raise AttributeError("You cannot add class attributes to %s" % cls)
|
49
|
+
return set_class_attr
|
50
|
+
|
51
|
+
|
52
|
+
def _swig_add_metaclass(metaclass):
|
53
|
+
"""Class decorator for adding a metaclass to a SWIG wrapped class - a slimmed down version of six.add_metaclass"""
|
54
|
+
def wrapper(cls):
|
55
|
+
return metaclass(cls.__name__, cls.__bases__, cls.__dict__.copy())
|
56
|
+
return wrapper
|
57
|
+
|
58
|
+
|
59
|
+
class _SwigNonDynamicMeta(type):
|
60
|
+
"""Meta class to enforce nondynamic attributes (no new attributes) for a class"""
|
61
|
+
__setattr__ = _swig_setattr_nondynamic_class_variable(type.__setattr__)
|
62
|
+
|
63
|
+
|
64
|
+
SHARED_PTR_DISOWN = _VisualsSwig.SHARED_PTR_DISOWN
|
65
|
+
|
66
|
+
class SwigPyIterator(object):
|
67
|
+
r"""Proxy of C++ swig::SwigPyIterator class."""
|
68
|
+
|
69
|
+
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
70
|
+
|
71
|
+
def __init__(self, *args, **kwargs):
|
72
|
+
raise AttributeError("No constructor defined - class is abstract")
|
73
|
+
__repr__ = _swig_repr
|
74
|
+
__swig_destroy__ = _VisualsSwig.delete_SwigPyIterator
|
75
|
+
|
76
|
+
def value(self):
|
77
|
+
r"""value(SwigPyIterator self) -> PyObject *"""
|
78
|
+
return _VisualsSwig.SwigPyIterator_value(self)
|
79
|
+
|
80
|
+
def incr(self, n=1):
|
81
|
+
r"""
|
82
|
+
incr(SwigPyIterator self, size_t n=1) -> SwigPyIterator
|
83
|
+
|
84
|
+
Parameters
|
85
|
+
----------
|
86
|
+
n: size_t
|
87
|
+
|
88
|
+
"""
|
89
|
+
return _VisualsSwig.SwigPyIterator_incr(self, n)
|
90
|
+
|
91
|
+
def decr(self, n=1):
|
92
|
+
r"""
|
93
|
+
decr(SwigPyIterator self, size_t n=1) -> SwigPyIterator
|
94
|
+
|
95
|
+
Parameters
|
96
|
+
----------
|
97
|
+
n: size_t
|
98
|
+
|
99
|
+
"""
|
100
|
+
return _VisualsSwig.SwigPyIterator_decr(self, n)
|
101
|
+
|
102
|
+
def distance(self, x):
|
103
|
+
r"""
|
104
|
+
distance(SwigPyIterator self, SwigPyIterator x) -> ptrdiff_t
|
105
|
+
|
106
|
+
Parameters
|
107
|
+
----------
|
108
|
+
x: swig::SwigPyIterator const &
|
109
|
+
|
110
|
+
"""
|
111
|
+
return _VisualsSwig.SwigPyIterator_distance(self, x)
|
112
|
+
|
113
|
+
def equal(self, x):
|
114
|
+
r"""
|
115
|
+
equal(SwigPyIterator self, SwigPyIterator x) -> bool
|
116
|
+
|
117
|
+
Parameters
|
118
|
+
----------
|
119
|
+
x: swig::SwigPyIterator const &
|
120
|
+
|
121
|
+
"""
|
122
|
+
return _VisualsSwig.SwigPyIterator_equal(self, x)
|
123
|
+
|
124
|
+
def copy(self):
|
125
|
+
r"""copy(SwigPyIterator self) -> SwigPyIterator"""
|
126
|
+
return _VisualsSwig.SwigPyIterator_copy(self)
|
127
|
+
|
128
|
+
def next(self):
|
129
|
+
r"""next(SwigPyIterator self) -> PyObject *"""
|
130
|
+
return _VisualsSwig.SwigPyIterator_next(self)
|
131
|
+
|
132
|
+
def __next__(self):
|
133
|
+
r"""__next__(SwigPyIterator self) -> PyObject *"""
|
134
|
+
return _VisualsSwig.SwigPyIterator___next__(self)
|
135
|
+
|
136
|
+
def previous(self):
|
137
|
+
r"""previous(SwigPyIterator self) -> PyObject *"""
|
138
|
+
return _VisualsSwig.SwigPyIterator_previous(self)
|
139
|
+
|
140
|
+
def advance(self, n):
|
141
|
+
r"""
|
142
|
+
advance(SwigPyIterator self, ptrdiff_t n) -> SwigPyIterator
|
143
|
+
|
144
|
+
Parameters
|
145
|
+
----------
|
146
|
+
n: ptrdiff_t
|
147
|
+
|
148
|
+
"""
|
149
|
+
return _VisualsSwig.SwigPyIterator_advance(self, n)
|
150
|
+
|
151
|
+
def __eq__(self, x):
|
152
|
+
r"""
|
153
|
+
__eq__(SwigPyIterator self, SwigPyIterator x) -> bool
|
154
|
+
|
155
|
+
Parameters
|
156
|
+
----------
|
157
|
+
x: swig::SwigPyIterator const &
|
158
|
+
|
159
|
+
"""
|
160
|
+
return _VisualsSwig.SwigPyIterator___eq__(self, x)
|
161
|
+
|
162
|
+
def __ne__(self, x):
|
163
|
+
r"""
|
164
|
+
__ne__(SwigPyIterator self, SwigPyIterator x) -> bool
|
165
|
+
|
166
|
+
Parameters
|
167
|
+
----------
|
168
|
+
x: swig::SwigPyIterator const &
|
169
|
+
|
170
|
+
"""
|
171
|
+
return _VisualsSwig.SwigPyIterator___ne__(self, x)
|
172
|
+
|
173
|
+
def __iadd__(self, n):
|
174
|
+
r"""
|
175
|
+
__iadd__(SwigPyIterator self, ptrdiff_t n) -> SwigPyIterator
|
176
|
+
|
177
|
+
Parameters
|
178
|
+
----------
|
179
|
+
n: ptrdiff_t
|
180
|
+
|
181
|
+
"""
|
182
|
+
return _VisualsSwig.SwigPyIterator___iadd__(self, n)
|
183
|
+
|
184
|
+
def __isub__(self, n):
|
185
|
+
r"""
|
186
|
+
__isub__(SwigPyIterator self, ptrdiff_t n) -> SwigPyIterator
|
187
|
+
|
188
|
+
Parameters
|
189
|
+
----------
|
190
|
+
n: ptrdiff_t
|
191
|
+
|
192
|
+
"""
|
193
|
+
return _VisualsSwig.SwigPyIterator___isub__(self, n)
|
194
|
+
|
195
|
+
def __add__(self, n):
|
196
|
+
r"""
|
197
|
+
__add__(SwigPyIterator self, ptrdiff_t n) -> SwigPyIterator
|
198
|
+
|
199
|
+
Parameters
|
200
|
+
----------
|
201
|
+
n: ptrdiff_t
|
202
|
+
|
203
|
+
"""
|
204
|
+
return _VisualsSwig.SwigPyIterator___add__(self, n)
|
205
|
+
|
206
|
+
def __sub__(self, *args):
|
207
|
+
r"""
|
208
|
+
__sub__(SwigPyIterator self, ptrdiff_t n) -> SwigPyIterator
|
209
|
+
|
210
|
+
Parameters
|
211
|
+
----------
|
212
|
+
n: ptrdiff_t
|
213
|
+
|
214
|
+
__sub__(SwigPyIterator self, SwigPyIterator x) -> ptrdiff_t
|
215
|
+
|
216
|
+
Parameters
|
217
|
+
----------
|
218
|
+
x: swig::SwigPyIterator const &
|
219
|
+
|
220
|
+
"""
|
221
|
+
return _VisualsSwig.SwigPyIterator___sub__(self, *args)
|
222
|
+
def __iter__(self):
|
223
|
+
return self
|
224
|
+
|
225
|
+
# Register SwigPyIterator in _VisualsSwig:
|
226
|
+
_VisualsSwig.SwigPyIterator_swigregister(SwigPyIterator)
|
227
|
+
|
228
|
+
import openplx.Core
|
229
|
+
import openplx.Math
|
230
|
+
class Visuals_Geometries_Box_Vector(object):
|
231
|
+
r"""Proxy of C++ std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > > class."""
|
232
|
+
|
233
|
+
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
234
|
+
__repr__ = _swig_repr
|
235
|
+
|
236
|
+
def iterator(self):
|
237
|
+
r"""iterator(Visuals_Geometries_Box_Vector self) -> SwigPyIterator"""
|
238
|
+
return _VisualsSwig.Visuals_Geometries_Box_Vector_iterator(self)
|
239
|
+
def __iter__(self):
|
240
|
+
return self.iterator()
|
241
|
+
|
242
|
+
def __nonzero__(self):
|
243
|
+
r"""__nonzero__(Visuals_Geometries_Box_Vector self) -> bool"""
|
244
|
+
return _VisualsSwig.Visuals_Geometries_Box_Vector___nonzero__(self)
|
245
|
+
|
246
|
+
def __bool__(self):
|
247
|
+
r"""__bool__(Visuals_Geometries_Box_Vector self) -> bool"""
|
248
|
+
return _VisualsSwig.Visuals_Geometries_Box_Vector___bool__(self)
|
249
|
+
|
250
|
+
def __len__(self):
|
251
|
+
r"""__len__(Visuals_Geometries_Box_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::size_type"""
|
252
|
+
return _VisualsSwig.Visuals_Geometries_Box_Vector___len__(self)
|
253
|
+
|
254
|
+
def __getslice__(self, i, j):
|
255
|
+
r"""
|
256
|
+
__getslice__(Visuals_Geometries_Box_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::difference_type i, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::difference_type j) -> Visuals_Geometries_Box_Vector
|
257
|
+
|
258
|
+
Parameters
|
259
|
+
----------
|
260
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::difference_type
|
261
|
+
j: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::difference_type
|
262
|
+
|
263
|
+
"""
|
264
|
+
return _VisualsSwig.Visuals_Geometries_Box_Vector___getslice__(self, i, j)
|
265
|
+
|
266
|
+
def __setslice__(self, *args):
|
267
|
+
r"""
|
268
|
+
__setslice__(Visuals_Geometries_Box_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::difference_type i, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::difference_type j)
|
269
|
+
|
270
|
+
Parameters
|
271
|
+
----------
|
272
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::difference_type
|
273
|
+
j: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::difference_type
|
274
|
+
|
275
|
+
__setslice__(Visuals_Geometries_Box_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::difference_type i, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::difference_type j, Visuals_Geometries_Box_Vector v)
|
276
|
+
|
277
|
+
Parameters
|
278
|
+
----------
|
279
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::difference_type
|
280
|
+
j: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::difference_type
|
281
|
+
v: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box >,std::allocator< std::shared_ptr< openplx::Visuals::Geometries::Box > > > const &
|
282
|
+
|
283
|
+
"""
|
284
|
+
return _VisualsSwig.Visuals_Geometries_Box_Vector___setslice__(self, *args)
|
285
|
+
|
286
|
+
def __delslice__(self, i, j):
|
287
|
+
r"""
|
288
|
+
__delslice__(Visuals_Geometries_Box_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::difference_type i, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::difference_type j)
|
289
|
+
|
290
|
+
Parameters
|
291
|
+
----------
|
292
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::difference_type
|
293
|
+
j: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::difference_type
|
294
|
+
|
295
|
+
"""
|
296
|
+
return _VisualsSwig.Visuals_Geometries_Box_Vector___delslice__(self, i, j)
|
297
|
+
|
298
|
+
def __delitem__(self, *args):
|
299
|
+
r"""
|
300
|
+
__delitem__(Visuals_Geometries_Box_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::difference_type i)
|
301
|
+
|
302
|
+
Parameters
|
303
|
+
----------
|
304
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::difference_type
|
305
|
+
|
306
|
+
__delitem__(Visuals_Geometries_Box_Vector self, PySliceObject * slice)
|
307
|
+
|
308
|
+
Parameters
|
309
|
+
----------
|
310
|
+
slice: PySliceObject *
|
311
|
+
|
312
|
+
"""
|
313
|
+
return _VisualsSwig.Visuals_Geometries_Box_Vector___delitem__(self, *args)
|
314
|
+
|
315
|
+
def __getitem__(self, *args):
|
316
|
+
r"""
|
317
|
+
__getitem__(Visuals_Geometries_Box_Vector self, PySliceObject * slice) -> Visuals_Geometries_Box_Vector
|
318
|
+
|
319
|
+
Parameters
|
320
|
+
----------
|
321
|
+
slice: PySliceObject *
|
322
|
+
|
323
|
+
__getitem__(Visuals_Geometries_Box_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::difference_type i) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::value_type const &
|
324
|
+
|
325
|
+
Parameters
|
326
|
+
----------
|
327
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::difference_type
|
328
|
+
|
329
|
+
"""
|
330
|
+
return _VisualsSwig.Visuals_Geometries_Box_Vector___getitem__(self, *args)
|
331
|
+
|
332
|
+
def __setitem__(self, *args):
|
333
|
+
r"""
|
334
|
+
__setitem__(Visuals_Geometries_Box_Vector self, PySliceObject * slice, Visuals_Geometries_Box_Vector v)
|
335
|
+
|
336
|
+
Parameters
|
337
|
+
----------
|
338
|
+
slice: PySliceObject *
|
339
|
+
v: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box >,std::allocator< std::shared_ptr< openplx::Visuals::Geometries::Box > > > const &
|
340
|
+
|
341
|
+
__setitem__(Visuals_Geometries_Box_Vector self, PySliceObject * slice)
|
342
|
+
|
343
|
+
Parameters
|
344
|
+
----------
|
345
|
+
slice: PySliceObject *
|
346
|
+
|
347
|
+
__setitem__(Visuals_Geometries_Box_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::difference_type i, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::value_type const & x)
|
348
|
+
|
349
|
+
Parameters
|
350
|
+
----------
|
351
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::difference_type
|
352
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::value_type const &
|
353
|
+
|
354
|
+
"""
|
355
|
+
return _VisualsSwig.Visuals_Geometries_Box_Vector___setitem__(self, *args)
|
356
|
+
|
357
|
+
def pop(self):
|
358
|
+
r"""pop(Visuals_Geometries_Box_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::value_type"""
|
359
|
+
return _VisualsSwig.Visuals_Geometries_Box_Vector_pop(self)
|
360
|
+
|
361
|
+
def append(self, x):
|
362
|
+
r"""
|
363
|
+
append(Visuals_Geometries_Box_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::value_type const & x)
|
364
|
+
|
365
|
+
Parameters
|
366
|
+
----------
|
367
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::value_type const &
|
368
|
+
|
369
|
+
"""
|
370
|
+
return _VisualsSwig.Visuals_Geometries_Box_Vector_append(self, x)
|
371
|
+
|
372
|
+
def empty(self):
|
373
|
+
r"""empty(Visuals_Geometries_Box_Vector self) -> bool"""
|
374
|
+
return _VisualsSwig.Visuals_Geometries_Box_Vector_empty(self)
|
375
|
+
|
376
|
+
def size(self):
|
377
|
+
r"""size(Visuals_Geometries_Box_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::size_type"""
|
378
|
+
return _VisualsSwig.Visuals_Geometries_Box_Vector_size(self)
|
379
|
+
|
380
|
+
def swap(self, v):
|
381
|
+
r"""
|
382
|
+
swap(Visuals_Geometries_Box_Vector self, Visuals_Geometries_Box_Vector v)
|
383
|
+
|
384
|
+
Parameters
|
385
|
+
----------
|
386
|
+
v: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > > &
|
387
|
+
|
388
|
+
"""
|
389
|
+
return _VisualsSwig.Visuals_Geometries_Box_Vector_swap(self, v)
|
390
|
+
|
391
|
+
def begin(self):
|
392
|
+
r"""begin(Visuals_Geometries_Box_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::iterator"""
|
393
|
+
return _VisualsSwig.Visuals_Geometries_Box_Vector_begin(self)
|
394
|
+
|
395
|
+
def end(self):
|
396
|
+
r"""end(Visuals_Geometries_Box_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::iterator"""
|
397
|
+
return _VisualsSwig.Visuals_Geometries_Box_Vector_end(self)
|
398
|
+
|
399
|
+
def rbegin(self):
|
400
|
+
r"""rbegin(Visuals_Geometries_Box_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::reverse_iterator"""
|
401
|
+
return _VisualsSwig.Visuals_Geometries_Box_Vector_rbegin(self)
|
402
|
+
|
403
|
+
def rend(self):
|
404
|
+
r"""rend(Visuals_Geometries_Box_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::reverse_iterator"""
|
405
|
+
return _VisualsSwig.Visuals_Geometries_Box_Vector_rend(self)
|
406
|
+
|
407
|
+
def clear(self):
|
408
|
+
r"""clear(Visuals_Geometries_Box_Vector self)"""
|
409
|
+
return _VisualsSwig.Visuals_Geometries_Box_Vector_clear(self)
|
410
|
+
|
411
|
+
def get_allocator(self):
|
412
|
+
r"""get_allocator(Visuals_Geometries_Box_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::allocator_type"""
|
413
|
+
return _VisualsSwig.Visuals_Geometries_Box_Vector_get_allocator(self)
|
414
|
+
|
415
|
+
def pop_back(self):
|
416
|
+
r"""pop_back(Visuals_Geometries_Box_Vector self)"""
|
417
|
+
return _VisualsSwig.Visuals_Geometries_Box_Vector_pop_back(self)
|
418
|
+
|
419
|
+
def erase(self, *args):
|
420
|
+
r"""
|
421
|
+
erase(Visuals_Geometries_Box_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::iterator pos) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::iterator
|
422
|
+
|
423
|
+
Parameters
|
424
|
+
----------
|
425
|
+
pos: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::iterator
|
426
|
+
|
427
|
+
erase(Visuals_Geometries_Box_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::iterator first, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::iterator last) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::iterator
|
428
|
+
|
429
|
+
Parameters
|
430
|
+
----------
|
431
|
+
first: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::iterator
|
432
|
+
last: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::iterator
|
433
|
+
|
434
|
+
"""
|
435
|
+
return _VisualsSwig.Visuals_Geometries_Box_Vector_erase(self, *args)
|
436
|
+
|
437
|
+
def __init__(self, *args):
|
438
|
+
r"""
|
439
|
+
__init__(Visuals_Geometries_Box_Vector self) -> Visuals_Geometries_Box_Vector
|
440
|
+
__init__(Visuals_Geometries_Box_Vector self, Visuals_Geometries_Box_Vector other) -> Visuals_Geometries_Box_Vector
|
441
|
+
|
442
|
+
Parameters
|
443
|
+
----------
|
444
|
+
other: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > > const &
|
445
|
+
|
446
|
+
__init__(Visuals_Geometries_Box_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::size_type size) -> Visuals_Geometries_Box_Vector
|
447
|
+
|
448
|
+
Parameters
|
449
|
+
----------
|
450
|
+
size: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::size_type
|
451
|
+
|
452
|
+
__init__(Visuals_Geometries_Box_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::size_type size, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::value_type const & value) -> Visuals_Geometries_Box_Vector
|
453
|
+
|
454
|
+
Parameters
|
455
|
+
----------
|
456
|
+
size: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::size_type
|
457
|
+
value: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::value_type const &
|
458
|
+
|
459
|
+
"""
|
460
|
+
_VisualsSwig.Visuals_Geometries_Box_Vector_swiginit(self, _VisualsSwig.new_Visuals_Geometries_Box_Vector(*args))
|
461
|
+
|
462
|
+
def push_back(self, x):
|
463
|
+
r"""
|
464
|
+
push_back(Visuals_Geometries_Box_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::value_type const & x)
|
465
|
+
|
466
|
+
Parameters
|
467
|
+
----------
|
468
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::value_type const &
|
469
|
+
|
470
|
+
"""
|
471
|
+
return _VisualsSwig.Visuals_Geometries_Box_Vector_push_back(self, x)
|
472
|
+
|
473
|
+
def front(self):
|
474
|
+
r"""front(Visuals_Geometries_Box_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::value_type const &"""
|
475
|
+
return _VisualsSwig.Visuals_Geometries_Box_Vector_front(self)
|
476
|
+
|
477
|
+
def back(self):
|
478
|
+
r"""back(Visuals_Geometries_Box_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::value_type const &"""
|
479
|
+
return _VisualsSwig.Visuals_Geometries_Box_Vector_back(self)
|
480
|
+
|
481
|
+
def assign(self, n, x):
|
482
|
+
r"""
|
483
|
+
assign(Visuals_Geometries_Box_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::size_type n, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::value_type const & x)
|
484
|
+
|
485
|
+
Parameters
|
486
|
+
----------
|
487
|
+
n: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::size_type
|
488
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::value_type const &
|
489
|
+
|
490
|
+
"""
|
491
|
+
return _VisualsSwig.Visuals_Geometries_Box_Vector_assign(self, n, x)
|
492
|
+
|
493
|
+
def resize(self, *args):
|
494
|
+
r"""
|
495
|
+
resize(Visuals_Geometries_Box_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::size_type new_size)
|
496
|
+
|
497
|
+
Parameters
|
498
|
+
----------
|
499
|
+
new_size: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::size_type
|
500
|
+
|
501
|
+
resize(Visuals_Geometries_Box_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::size_type new_size, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::value_type const & x)
|
502
|
+
|
503
|
+
Parameters
|
504
|
+
----------
|
505
|
+
new_size: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::size_type
|
506
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::value_type const &
|
507
|
+
|
508
|
+
"""
|
509
|
+
return _VisualsSwig.Visuals_Geometries_Box_Vector_resize(self, *args)
|
510
|
+
|
511
|
+
def insert(self, *args):
|
512
|
+
r"""
|
513
|
+
insert(Visuals_Geometries_Box_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::iterator pos, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::value_type const & x) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::iterator
|
514
|
+
|
515
|
+
Parameters
|
516
|
+
----------
|
517
|
+
pos: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::iterator
|
518
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::value_type const &
|
519
|
+
|
520
|
+
insert(Visuals_Geometries_Box_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::iterator pos, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::size_type n, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::value_type const & x)
|
521
|
+
|
522
|
+
Parameters
|
523
|
+
----------
|
524
|
+
pos: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::iterator
|
525
|
+
n: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::size_type
|
526
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::value_type const &
|
527
|
+
|
528
|
+
"""
|
529
|
+
return _VisualsSwig.Visuals_Geometries_Box_Vector_insert(self, *args)
|
530
|
+
|
531
|
+
def reserve(self, n):
|
532
|
+
r"""
|
533
|
+
reserve(Visuals_Geometries_Box_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::size_type n)
|
534
|
+
|
535
|
+
Parameters
|
536
|
+
----------
|
537
|
+
n: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::size_type
|
538
|
+
|
539
|
+
"""
|
540
|
+
return _VisualsSwig.Visuals_Geometries_Box_Vector_reserve(self, n)
|
541
|
+
|
542
|
+
def capacity(self):
|
543
|
+
r"""capacity(Visuals_Geometries_Box_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Box > >::size_type"""
|
544
|
+
return _VisualsSwig.Visuals_Geometries_Box_Vector_capacity(self)
|
545
|
+
__swig_destroy__ = _VisualsSwig.delete_Visuals_Geometries_Box_Vector
|
546
|
+
|
547
|
+
# Register Visuals_Geometries_Box_Vector in _VisualsSwig:
|
548
|
+
_VisualsSwig.Visuals_Geometries_Box_Vector_swigregister(Visuals_Geometries_Box_Vector)
|
549
|
+
|
550
|
+
class Visuals_Geometries_ConvexMesh_Vector(object):
|
551
|
+
r"""Proxy of C++ std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > > class."""
|
552
|
+
|
553
|
+
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
554
|
+
__repr__ = _swig_repr
|
555
|
+
|
556
|
+
def iterator(self):
|
557
|
+
r"""iterator(Visuals_Geometries_ConvexMesh_Vector self) -> SwigPyIterator"""
|
558
|
+
return _VisualsSwig.Visuals_Geometries_ConvexMesh_Vector_iterator(self)
|
559
|
+
def __iter__(self):
|
560
|
+
return self.iterator()
|
561
|
+
|
562
|
+
def __nonzero__(self):
|
563
|
+
r"""__nonzero__(Visuals_Geometries_ConvexMesh_Vector self) -> bool"""
|
564
|
+
return _VisualsSwig.Visuals_Geometries_ConvexMesh_Vector___nonzero__(self)
|
565
|
+
|
566
|
+
def __bool__(self):
|
567
|
+
r"""__bool__(Visuals_Geometries_ConvexMesh_Vector self) -> bool"""
|
568
|
+
return _VisualsSwig.Visuals_Geometries_ConvexMesh_Vector___bool__(self)
|
569
|
+
|
570
|
+
def __len__(self):
|
571
|
+
r"""__len__(Visuals_Geometries_ConvexMesh_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::size_type"""
|
572
|
+
return _VisualsSwig.Visuals_Geometries_ConvexMesh_Vector___len__(self)
|
573
|
+
|
574
|
+
def __getslice__(self, i, j):
|
575
|
+
r"""
|
576
|
+
__getslice__(Visuals_Geometries_ConvexMesh_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::difference_type i, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::difference_type j) -> Visuals_Geometries_ConvexMesh_Vector
|
577
|
+
|
578
|
+
Parameters
|
579
|
+
----------
|
580
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::difference_type
|
581
|
+
j: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::difference_type
|
582
|
+
|
583
|
+
"""
|
584
|
+
return _VisualsSwig.Visuals_Geometries_ConvexMesh_Vector___getslice__(self, i, j)
|
585
|
+
|
586
|
+
def __setslice__(self, *args):
|
587
|
+
r"""
|
588
|
+
__setslice__(Visuals_Geometries_ConvexMesh_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::difference_type i, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::difference_type j)
|
589
|
+
|
590
|
+
Parameters
|
591
|
+
----------
|
592
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::difference_type
|
593
|
+
j: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::difference_type
|
594
|
+
|
595
|
+
__setslice__(Visuals_Geometries_ConvexMesh_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::difference_type i, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::difference_type j, Visuals_Geometries_ConvexMesh_Vector v)
|
596
|
+
|
597
|
+
Parameters
|
598
|
+
----------
|
599
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::difference_type
|
600
|
+
j: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::difference_type
|
601
|
+
v: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh >,std::allocator< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > > > const &
|
602
|
+
|
603
|
+
"""
|
604
|
+
return _VisualsSwig.Visuals_Geometries_ConvexMesh_Vector___setslice__(self, *args)
|
605
|
+
|
606
|
+
def __delslice__(self, i, j):
|
607
|
+
r"""
|
608
|
+
__delslice__(Visuals_Geometries_ConvexMesh_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::difference_type i, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::difference_type j)
|
609
|
+
|
610
|
+
Parameters
|
611
|
+
----------
|
612
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::difference_type
|
613
|
+
j: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::difference_type
|
614
|
+
|
615
|
+
"""
|
616
|
+
return _VisualsSwig.Visuals_Geometries_ConvexMesh_Vector___delslice__(self, i, j)
|
617
|
+
|
618
|
+
def __delitem__(self, *args):
|
619
|
+
r"""
|
620
|
+
__delitem__(Visuals_Geometries_ConvexMesh_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::difference_type i)
|
621
|
+
|
622
|
+
Parameters
|
623
|
+
----------
|
624
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::difference_type
|
625
|
+
|
626
|
+
__delitem__(Visuals_Geometries_ConvexMesh_Vector self, PySliceObject * slice)
|
627
|
+
|
628
|
+
Parameters
|
629
|
+
----------
|
630
|
+
slice: PySliceObject *
|
631
|
+
|
632
|
+
"""
|
633
|
+
return _VisualsSwig.Visuals_Geometries_ConvexMesh_Vector___delitem__(self, *args)
|
634
|
+
|
635
|
+
def __getitem__(self, *args):
|
636
|
+
r"""
|
637
|
+
__getitem__(Visuals_Geometries_ConvexMesh_Vector self, PySliceObject * slice) -> Visuals_Geometries_ConvexMesh_Vector
|
638
|
+
|
639
|
+
Parameters
|
640
|
+
----------
|
641
|
+
slice: PySliceObject *
|
642
|
+
|
643
|
+
__getitem__(Visuals_Geometries_ConvexMesh_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::difference_type i) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::value_type const &
|
644
|
+
|
645
|
+
Parameters
|
646
|
+
----------
|
647
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::difference_type
|
648
|
+
|
649
|
+
"""
|
650
|
+
return _VisualsSwig.Visuals_Geometries_ConvexMesh_Vector___getitem__(self, *args)
|
651
|
+
|
652
|
+
def __setitem__(self, *args):
|
653
|
+
r"""
|
654
|
+
__setitem__(Visuals_Geometries_ConvexMesh_Vector self, PySliceObject * slice, Visuals_Geometries_ConvexMesh_Vector v)
|
655
|
+
|
656
|
+
Parameters
|
657
|
+
----------
|
658
|
+
slice: PySliceObject *
|
659
|
+
v: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh >,std::allocator< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > > > const &
|
660
|
+
|
661
|
+
__setitem__(Visuals_Geometries_ConvexMesh_Vector self, PySliceObject * slice)
|
662
|
+
|
663
|
+
Parameters
|
664
|
+
----------
|
665
|
+
slice: PySliceObject *
|
666
|
+
|
667
|
+
__setitem__(Visuals_Geometries_ConvexMesh_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::difference_type i, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::value_type const & x)
|
668
|
+
|
669
|
+
Parameters
|
670
|
+
----------
|
671
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::difference_type
|
672
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::value_type const &
|
673
|
+
|
674
|
+
"""
|
675
|
+
return _VisualsSwig.Visuals_Geometries_ConvexMesh_Vector___setitem__(self, *args)
|
676
|
+
|
677
|
+
def pop(self):
|
678
|
+
r"""pop(Visuals_Geometries_ConvexMesh_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::value_type"""
|
679
|
+
return _VisualsSwig.Visuals_Geometries_ConvexMesh_Vector_pop(self)
|
680
|
+
|
681
|
+
def append(self, x):
|
682
|
+
r"""
|
683
|
+
append(Visuals_Geometries_ConvexMesh_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::value_type const & x)
|
684
|
+
|
685
|
+
Parameters
|
686
|
+
----------
|
687
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::value_type const &
|
688
|
+
|
689
|
+
"""
|
690
|
+
return _VisualsSwig.Visuals_Geometries_ConvexMesh_Vector_append(self, x)
|
691
|
+
|
692
|
+
def empty(self):
|
693
|
+
r"""empty(Visuals_Geometries_ConvexMesh_Vector self) -> bool"""
|
694
|
+
return _VisualsSwig.Visuals_Geometries_ConvexMesh_Vector_empty(self)
|
695
|
+
|
696
|
+
def size(self):
|
697
|
+
r"""size(Visuals_Geometries_ConvexMesh_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::size_type"""
|
698
|
+
return _VisualsSwig.Visuals_Geometries_ConvexMesh_Vector_size(self)
|
699
|
+
|
700
|
+
def swap(self, v):
|
701
|
+
r"""
|
702
|
+
swap(Visuals_Geometries_ConvexMesh_Vector self, Visuals_Geometries_ConvexMesh_Vector v)
|
703
|
+
|
704
|
+
Parameters
|
705
|
+
----------
|
706
|
+
v: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > > &
|
707
|
+
|
708
|
+
"""
|
709
|
+
return _VisualsSwig.Visuals_Geometries_ConvexMesh_Vector_swap(self, v)
|
710
|
+
|
711
|
+
def begin(self):
|
712
|
+
r"""begin(Visuals_Geometries_ConvexMesh_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::iterator"""
|
713
|
+
return _VisualsSwig.Visuals_Geometries_ConvexMesh_Vector_begin(self)
|
714
|
+
|
715
|
+
def end(self):
|
716
|
+
r"""end(Visuals_Geometries_ConvexMesh_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::iterator"""
|
717
|
+
return _VisualsSwig.Visuals_Geometries_ConvexMesh_Vector_end(self)
|
718
|
+
|
719
|
+
def rbegin(self):
|
720
|
+
r"""rbegin(Visuals_Geometries_ConvexMesh_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::reverse_iterator"""
|
721
|
+
return _VisualsSwig.Visuals_Geometries_ConvexMesh_Vector_rbegin(self)
|
722
|
+
|
723
|
+
def rend(self):
|
724
|
+
r"""rend(Visuals_Geometries_ConvexMesh_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::reverse_iterator"""
|
725
|
+
return _VisualsSwig.Visuals_Geometries_ConvexMesh_Vector_rend(self)
|
726
|
+
|
727
|
+
def clear(self):
|
728
|
+
r"""clear(Visuals_Geometries_ConvexMesh_Vector self)"""
|
729
|
+
return _VisualsSwig.Visuals_Geometries_ConvexMesh_Vector_clear(self)
|
730
|
+
|
731
|
+
def get_allocator(self):
|
732
|
+
r"""get_allocator(Visuals_Geometries_ConvexMesh_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::allocator_type"""
|
733
|
+
return _VisualsSwig.Visuals_Geometries_ConvexMesh_Vector_get_allocator(self)
|
734
|
+
|
735
|
+
def pop_back(self):
|
736
|
+
r"""pop_back(Visuals_Geometries_ConvexMesh_Vector self)"""
|
737
|
+
return _VisualsSwig.Visuals_Geometries_ConvexMesh_Vector_pop_back(self)
|
738
|
+
|
739
|
+
def erase(self, *args):
|
740
|
+
r"""
|
741
|
+
erase(Visuals_Geometries_ConvexMesh_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::iterator pos) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::iterator
|
742
|
+
|
743
|
+
Parameters
|
744
|
+
----------
|
745
|
+
pos: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::iterator
|
746
|
+
|
747
|
+
erase(Visuals_Geometries_ConvexMesh_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::iterator first, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::iterator last) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::iterator
|
748
|
+
|
749
|
+
Parameters
|
750
|
+
----------
|
751
|
+
first: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::iterator
|
752
|
+
last: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::iterator
|
753
|
+
|
754
|
+
"""
|
755
|
+
return _VisualsSwig.Visuals_Geometries_ConvexMesh_Vector_erase(self, *args)
|
756
|
+
|
757
|
+
def __init__(self, *args):
|
758
|
+
r"""
|
759
|
+
__init__(Visuals_Geometries_ConvexMesh_Vector self) -> Visuals_Geometries_ConvexMesh_Vector
|
760
|
+
__init__(Visuals_Geometries_ConvexMesh_Vector self, Visuals_Geometries_ConvexMesh_Vector other) -> Visuals_Geometries_ConvexMesh_Vector
|
761
|
+
|
762
|
+
Parameters
|
763
|
+
----------
|
764
|
+
other: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > > const &
|
765
|
+
|
766
|
+
__init__(Visuals_Geometries_ConvexMesh_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::size_type size) -> Visuals_Geometries_ConvexMesh_Vector
|
767
|
+
|
768
|
+
Parameters
|
769
|
+
----------
|
770
|
+
size: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::size_type
|
771
|
+
|
772
|
+
__init__(Visuals_Geometries_ConvexMesh_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::size_type size, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::value_type const & value) -> Visuals_Geometries_ConvexMesh_Vector
|
773
|
+
|
774
|
+
Parameters
|
775
|
+
----------
|
776
|
+
size: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::size_type
|
777
|
+
value: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::value_type const &
|
778
|
+
|
779
|
+
"""
|
780
|
+
_VisualsSwig.Visuals_Geometries_ConvexMesh_Vector_swiginit(self, _VisualsSwig.new_Visuals_Geometries_ConvexMesh_Vector(*args))
|
781
|
+
|
782
|
+
def push_back(self, x):
|
783
|
+
r"""
|
784
|
+
push_back(Visuals_Geometries_ConvexMesh_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::value_type const & x)
|
785
|
+
|
786
|
+
Parameters
|
787
|
+
----------
|
788
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::value_type const &
|
789
|
+
|
790
|
+
"""
|
791
|
+
return _VisualsSwig.Visuals_Geometries_ConvexMesh_Vector_push_back(self, x)
|
792
|
+
|
793
|
+
def front(self):
|
794
|
+
r"""front(Visuals_Geometries_ConvexMesh_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::value_type const &"""
|
795
|
+
return _VisualsSwig.Visuals_Geometries_ConvexMesh_Vector_front(self)
|
796
|
+
|
797
|
+
def back(self):
|
798
|
+
r"""back(Visuals_Geometries_ConvexMesh_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::value_type const &"""
|
799
|
+
return _VisualsSwig.Visuals_Geometries_ConvexMesh_Vector_back(self)
|
800
|
+
|
801
|
+
def assign(self, n, x):
|
802
|
+
r"""
|
803
|
+
assign(Visuals_Geometries_ConvexMesh_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::size_type n, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::value_type const & x)
|
804
|
+
|
805
|
+
Parameters
|
806
|
+
----------
|
807
|
+
n: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::size_type
|
808
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::value_type const &
|
809
|
+
|
810
|
+
"""
|
811
|
+
return _VisualsSwig.Visuals_Geometries_ConvexMesh_Vector_assign(self, n, x)
|
812
|
+
|
813
|
+
def resize(self, *args):
|
814
|
+
r"""
|
815
|
+
resize(Visuals_Geometries_ConvexMesh_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::size_type new_size)
|
816
|
+
|
817
|
+
Parameters
|
818
|
+
----------
|
819
|
+
new_size: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::size_type
|
820
|
+
|
821
|
+
resize(Visuals_Geometries_ConvexMesh_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::size_type new_size, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::value_type const & x)
|
822
|
+
|
823
|
+
Parameters
|
824
|
+
----------
|
825
|
+
new_size: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::size_type
|
826
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::value_type const &
|
827
|
+
|
828
|
+
"""
|
829
|
+
return _VisualsSwig.Visuals_Geometries_ConvexMesh_Vector_resize(self, *args)
|
830
|
+
|
831
|
+
def insert(self, *args):
|
832
|
+
r"""
|
833
|
+
insert(Visuals_Geometries_ConvexMesh_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::iterator pos, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::value_type const & x) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::iterator
|
834
|
+
|
835
|
+
Parameters
|
836
|
+
----------
|
837
|
+
pos: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::iterator
|
838
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::value_type const &
|
839
|
+
|
840
|
+
insert(Visuals_Geometries_ConvexMesh_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::iterator pos, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::size_type n, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::value_type const & x)
|
841
|
+
|
842
|
+
Parameters
|
843
|
+
----------
|
844
|
+
pos: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::iterator
|
845
|
+
n: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::size_type
|
846
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::value_type const &
|
847
|
+
|
848
|
+
"""
|
849
|
+
return _VisualsSwig.Visuals_Geometries_ConvexMesh_Vector_insert(self, *args)
|
850
|
+
|
851
|
+
def reserve(self, n):
|
852
|
+
r"""
|
853
|
+
reserve(Visuals_Geometries_ConvexMesh_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::size_type n)
|
854
|
+
|
855
|
+
Parameters
|
856
|
+
----------
|
857
|
+
n: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::size_type
|
858
|
+
|
859
|
+
"""
|
860
|
+
return _VisualsSwig.Visuals_Geometries_ConvexMesh_Vector_reserve(self, n)
|
861
|
+
|
862
|
+
def capacity(self):
|
863
|
+
r"""capacity(Visuals_Geometries_ConvexMesh_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::ConvexMesh > >::size_type"""
|
864
|
+
return _VisualsSwig.Visuals_Geometries_ConvexMesh_Vector_capacity(self)
|
865
|
+
__swig_destroy__ = _VisualsSwig.delete_Visuals_Geometries_ConvexMesh_Vector
|
866
|
+
|
867
|
+
# Register Visuals_Geometries_ConvexMesh_Vector in _VisualsSwig:
|
868
|
+
_VisualsSwig.Visuals_Geometries_ConvexMesh_Vector_swigregister(Visuals_Geometries_ConvexMesh_Vector)
|
869
|
+
|
870
|
+
class Visuals_Geometries_Cylinder_Vector(object):
|
871
|
+
r"""Proxy of C++ std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > > class."""
|
872
|
+
|
873
|
+
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
874
|
+
__repr__ = _swig_repr
|
875
|
+
|
876
|
+
def iterator(self):
|
877
|
+
r"""iterator(Visuals_Geometries_Cylinder_Vector self) -> SwigPyIterator"""
|
878
|
+
return _VisualsSwig.Visuals_Geometries_Cylinder_Vector_iterator(self)
|
879
|
+
def __iter__(self):
|
880
|
+
return self.iterator()
|
881
|
+
|
882
|
+
def __nonzero__(self):
|
883
|
+
r"""__nonzero__(Visuals_Geometries_Cylinder_Vector self) -> bool"""
|
884
|
+
return _VisualsSwig.Visuals_Geometries_Cylinder_Vector___nonzero__(self)
|
885
|
+
|
886
|
+
def __bool__(self):
|
887
|
+
r"""__bool__(Visuals_Geometries_Cylinder_Vector self) -> bool"""
|
888
|
+
return _VisualsSwig.Visuals_Geometries_Cylinder_Vector___bool__(self)
|
889
|
+
|
890
|
+
def __len__(self):
|
891
|
+
r"""__len__(Visuals_Geometries_Cylinder_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::size_type"""
|
892
|
+
return _VisualsSwig.Visuals_Geometries_Cylinder_Vector___len__(self)
|
893
|
+
|
894
|
+
def __getslice__(self, i, j):
|
895
|
+
r"""
|
896
|
+
__getslice__(Visuals_Geometries_Cylinder_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::difference_type i, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::difference_type j) -> Visuals_Geometries_Cylinder_Vector
|
897
|
+
|
898
|
+
Parameters
|
899
|
+
----------
|
900
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::difference_type
|
901
|
+
j: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::difference_type
|
902
|
+
|
903
|
+
"""
|
904
|
+
return _VisualsSwig.Visuals_Geometries_Cylinder_Vector___getslice__(self, i, j)
|
905
|
+
|
906
|
+
def __setslice__(self, *args):
|
907
|
+
r"""
|
908
|
+
__setslice__(Visuals_Geometries_Cylinder_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::difference_type i, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::difference_type j)
|
909
|
+
|
910
|
+
Parameters
|
911
|
+
----------
|
912
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::difference_type
|
913
|
+
j: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::difference_type
|
914
|
+
|
915
|
+
__setslice__(Visuals_Geometries_Cylinder_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::difference_type i, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::difference_type j, Visuals_Geometries_Cylinder_Vector v)
|
916
|
+
|
917
|
+
Parameters
|
918
|
+
----------
|
919
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::difference_type
|
920
|
+
j: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::difference_type
|
921
|
+
v: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder >,std::allocator< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > > > const &
|
922
|
+
|
923
|
+
"""
|
924
|
+
return _VisualsSwig.Visuals_Geometries_Cylinder_Vector___setslice__(self, *args)
|
925
|
+
|
926
|
+
def __delslice__(self, i, j):
|
927
|
+
r"""
|
928
|
+
__delslice__(Visuals_Geometries_Cylinder_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::difference_type i, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::difference_type j)
|
929
|
+
|
930
|
+
Parameters
|
931
|
+
----------
|
932
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::difference_type
|
933
|
+
j: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::difference_type
|
934
|
+
|
935
|
+
"""
|
936
|
+
return _VisualsSwig.Visuals_Geometries_Cylinder_Vector___delslice__(self, i, j)
|
937
|
+
|
938
|
+
def __delitem__(self, *args):
|
939
|
+
r"""
|
940
|
+
__delitem__(Visuals_Geometries_Cylinder_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::difference_type i)
|
941
|
+
|
942
|
+
Parameters
|
943
|
+
----------
|
944
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::difference_type
|
945
|
+
|
946
|
+
__delitem__(Visuals_Geometries_Cylinder_Vector self, PySliceObject * slice)
|
947
|
+
|
948
|
+
Parameters
|
949
|
+
----------
|
950
|
+
slice: PySliceObject *
|
951
|
+
|
952
|
+
"""
|
953
|
+
return _VisualsSwig.Visuals_Geometries_Cylinder_Vector___delitem__(self, *args)
|
954
|
+
|
955
|
+
def __getitem__(self, *args):
|
956
|
+
r"""
|
957
|
+
__getitem__(Visuals_Geometries_Cylinder_Vector self, PySliceObject * slice) -> Visuals_Geometries_Cylinder_Vector
|
958
|
+
|
959
|
+
Parameters
|
960
|
+
----------
|
961
|
+
slice: PySliceObject *
|
962
|
+
|
963
|
+
__getitem__(Visuals_Geometries_Cylinder_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::difference_type i) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::value_type const &
|
964
|
+
|
965
|
+
Parameters
|
966
|
+
----------
|
967
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::difference_type
|
968
|
+
|
969
|
+
"""
|
970
|
+
return _VisualsSwig.Visuals_Geometries_Cylinder_Vector___getitem__(self, *args)
|
971
|
+
|
972
|
+
def __setitem__(self, *args):
|
973
|
+
r"""
|
974
|
+
__setitem__(Visuals_Geometries_Cylinder_Vector self, PySliceObject * slice, Visuals_Geometries_Cylinder_Vector v)
|
975
|
+
|
976
|
+
Parameters
|
977
|
+
----------
|
978
|
+
slice: PySliceObject *
|
979
|
+
v: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder >,std::allocator< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > > > const &
|
980
|
+
|
981
|
+
__setitem__(Visuals_Geometries_Cylinder_Vector self, PySliceObject * slice)
|
982
|
+
|
983
|
+
Parameters
|
984
|
+
----------
|
985
|
+
slice: PySliceObject *
|
986
|
+
|
987
|
+
__setitem__(Visuals_Geometries_Cylinder_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::difference_type i, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::value_type const & x)
|
988
|
+
|
989
|
+
Parameters
|
990
|
+
----------
|
991
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::difference_type
|
992
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::value_type const &
|
993
|
+
|
994
|
+
"""
|
995
|
+
return _VisualsSwig.Visuals_Geometries_Cylinder_Vector___setitem__(self, *args)
|
996
|
+
|
997
|
+
def pop(self):
|
998
|
+
r"""pop(Visuals_Geometries_Cylinder_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::value_type"""
|
999
|
+
return _VisualsSwig.Visuals_Geometries_Cylinder_Vector_pop(self)
|
1000
|
+
|
1001
|
+
def append(self, x):
|
1002
|
+
r"""
|
1003
|
+
append(Visuals_Geometries_Cylinder_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::value_type const & x)
|
1004
|
+
|
1005
|
+
Parameters
|
1006
|
+
----------
|
1007
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::value_type const &
|
1008
|
+
|
1009
|
+
"""
|
1010
|
+
return _VisualsSwig.Visuals_Geometries_Cylinder_Vector_append(self, x)
|
1011
|
+
|
1012
|
+
def empty(self):
|
1013
|
+
r"""empty(Visuals_Geometries_Cylinder_Vector self) -> bool"""
|
1014
|
+
return _VisualsSwig.Visuals_Geometries_Cylinder_Vector_empty(self)
|
1015
|
+
|
1016
|
+
def size(self):
|
1017
|
+
r"""size(Visuals_Geometries_Cylinder_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::size_type"""
|
1018
|
+
return _VisualsSwig.Visuals_Geometries_Cylinder_Vector_size(self)
|
1019
|
+
|
1020
|
+
def swap(self, v):
|
1021
|
+
r"""
|
1022
|
+
swap(Visuals_Geometries_Cylinder_Vector self, Visuals_Geometries_Cylinder_Vector v)
|
1023
|
+
|
1024
|
+
Parameters
|
1025
|
+
----------
|
1026
|
+
v: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > > &
|
1027
|
+
|
1028
|
+
"""
|
1029
|
+
return _VisualsSwig.Visuals_Geometries_Cylinder_Vector_swap(self, v)
|
1030
|
+
|
1031
|
+
def begin(self):
|
1032
|
+
r"""begin(Visuals_Geometries_Cylinder_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::iterator"""
|
1033
|
+
return _VisualsSwig.Visuals_Geometries_Cylinder_Vector_begin(self)
|
1034
|
+
|
1035
|
+
def end(self):
|
1036
|
+
r"""end(Visuals_Geometries_Cylinder_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::iterator"""
|
1037
|
+
return _VisualsSwig.Visuals_Geometries_Cylinder_Vector_end(self)
|
1038
|
+
|
1039
|
+
def rbegin(self):
|
1040
|
+
r"""rbegin(Visuals_Geometries_Cylinder_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::reverse_iterator"""
|
1041
|
+
return _VisualsSwig.Visuals_Geometries_Cylinder_Vector_rbegin(self)
|
1042
|
+
|
1043
|
+
def rend(self):
|
1044
|
+
r"""rend(Visuals_Geometries_Cylinder_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::reverse_iterator"""
|
1045
|
+
return _VisualsSwig.Visuals_Geometries_Cylinder_Vector_rend(self)
|
1046
|
+
|
1047
|
+
def clear(self):
|
1048
|
+
r"""clear(Visuals_Geometries_Cylinder_Vector self)"""
|
1049
|
+
return _VisualsSwig.Visuals_Geometries_Cylinder_Vector_clear(self)
|
1050
|
+
|
1051
|
+
def get_allocator(self):
|
1052
|
+
r"""get_allocator(Visuals_Geometries_Cylinder_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::allocator_type"""
|
1053
|
+
return _VisualsSwig.Visuals_Geometries_Cylinder_Vector_get_allocator(self)
|
1054
|
+
|
1055
|
+
def pop_back(self):
|
1056
|
+
r"""pop_back(Visuals_Geometries_Cylinder_Vector self)"""
|
1057
|
+
return _VisualsSwig.Visuals_Geometries_Cylinder_Vector_pop_back(self)
|
1058
|
+
|
1059
|
+
def erase(self, *args):
|
1060
|
+
r"""
|
1061
|
+
erase(Visuals_Geometries_Cylinder_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::iterator pos) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::iterator
|
1062
|
+
|
1063
|
+
Parameters
|
1064
|
+
----------
|
1065
|
+
pos: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::iterator
|
1066
|
+
|
1067
|
+
erase(Visuals_Geometries_Cylinder_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::iterator first, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::iterator last) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::iterator
|
1068
|
+
|
1069
|
+
Parameters
|
1070
|
+
----------
|
1071
|
+
first: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::iterator
|
1072
|
+
last: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::iterator
|
1073
|
+
|
1074
|
+
"""
|
1075
|
+
return _VisualsSwig.Visuals_Geometries_Cylinder_Vector_erase(self, *args)
|
1076
|
+
|
1077
|
+
def __init__(self, *args):
|
1078
|
+
r"""
|
1079
|
+
__init__(Visuals_Geometries_Cylinder_Vector self) -> Visuals_Geometries_Cylinder_Vector
|
1080
|
+
__init__(Visuals_Geometries_Cylinder_Vector self, Visuals_Geometries_Cylinder_Vector other) -> Visuals_Geometries_Cylinder_Vector
|
1081
|
+
|
1082
|
+
Parameters
|
1083
|
+
----------
|
1084
|
+
other: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > > const &
|
1085
|
+
|
1086
|
+
__init__(Visuals_Geometries_Cylinder_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::size_type size) -> Visuals_Geometries_Cylinder_Vector
|
1087
|
+
|
1088
|
+
Parameters
|
1089
|
+
----------
|
1090
|
+
size: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::size_type
|
1091
|
+
|
1092
|
+
__init__(Visuals_Geometries_Cylinder_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::size_type size, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::value_type const & value) -> Visuals_Geometries_Cylinder_Vector
|
1093
|
+
|
1094
|
+
Parameters
|
1095
|
+
----------
|
1096
|
+
size: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::size_type
|
1097
|
+
value: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::value_type const &
|
1098
|
+
|
1099
|
+
"""
|
1100
|
+
_VisualsSwig.Visuals_Geometries_Cylinder_Vector_swiginit(self, _VisualsSwig.new_Visuals_Geometries_Cylinder_Vector(*args))
|
1101
|
+
|
1102
|
+
def push_back(self, x):
|
1103
|
+
r"""
|
1104
|
+
push_back(Visuals_Geometries_Cylinder_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::value_type const & x)
|
1105
|
+
|
1106
|
+
Parameters
|
1107
|
+
----------
|
1108
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::value_type const &
|
1109
|
+
|
1110
|
+
"""
|
1111
|
+
return _VisualsSwig.Visuals_Geometries_Cylinder_Vector_push_back(self, x)
|
1112
|
+
|
1113
|
+
def front(self):
|
1114
|
+
r"""front(Visuals_Geometries_Cylinder_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::value_type const &"""
|
1115
|
+
return _VisualsSwig.Visuals_Geometries_Cylinder_Vector_front(self)
|
1116
|
+
|
1117
|
+
def back(self):
|
1118
|
+
r"""back(Visuals_Geometries_Cylinder_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::value_type const &"""
|
1119
|
+
return _VisualsSwig.Visuals_Geometries_Cylinder_Vector_back(self)
|
1120
|
+
|
1121
|
+
def assign(self, n, x):
|
1122
|
+
r"""
|
1123
|
+
assign(Visuals_Geometries_Cylinder_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::size_type n, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::value_type const & x)
|
1124
|
+
|
1125
|
+
Parameters
|
1126
|
+
----------
|
1127
|
+
n: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::size_type
|
1128
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::value_type const &
|
1129
|
+
|
1130
|
+
"""
|
1131
|
+
return _VisualsSwig.Visuals_Geometries_Cylinder_Vector_assign(self, n, x)
|
1132
|
+
|
1133
|
+
def resize(self, *args):
|
1134
|
+
r"""
|
1135
|
+
resize(Visuals_Geometries_Cylinder_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::size_type new_size)
|
1136
|
+
|
1137
|
+
Parameters
|
1138
|
+
----------
|
1139
|
+
new_size: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::size_type
|
1140
|
+
|
1141
|
+
resize(Visuals_Geometries_Cylinder_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::size_type new_size, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::value_type const & x)
|
1142
|
+
|
1143
|
+
Parameters
|
1144
|
+
----------
|
1145
|
+
new_size: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::size_type
|
1146
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::value_type const &
|
1147
|
+
|
1148
|
+
"""
|
1149
|
+
return _VisualsSwig.Visuals_Geometries_Cylinder_Vector_resize(self, *args)
|
1150
|
+
|
1151
|
+
def insert(self, *args):
|
1152
|
+
r"""
|
1153
|
+
insert(Visuals_Geometries_Cylinder_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::iterator pos, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::value_type const & x) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::iterator
|
1154
|
+
|
1155
|
+
Parameters
|
1156
|
+
----------
|
1157
|
+
pos: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::iterator
|
1158
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::value_type const &
|
1159
|
+
|
1160
|
+
insert(Visuals_Geometries_Cylinder_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::iterator pos, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::size_type n, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::value_type const & x)
|
1161
|
+
|
1162
|
+
Parameters
|
1163
|
+
----------
|
1164
|
+
pos: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::iterator
|
1165
|
+
n: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::size_type
|
1166
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::value_type const &
|
1167
|
+
|
1168
|
+
"""
|
1169
|
+
return _VisualsSwig.Visuals_Geometries_Cylinder_Vector_insert(self, *args)
|
1170
|
+
|
1171
|
+
def reserve(self, n):
|
1172
|
+
r"""
|
1173
|
+
reserve(Visuals_Geometries_Cylinder_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::size_type n)
|
1174
|
+
|
1175
|
+
Parameters
|
1176
|
+
----------
|
1177
|
+
n: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::size_type
|
1178
|
+
|
1179
|
+
"""
|
1180
|
+
return _VisualsSwig.Visuals_Geometries_Cylinder_Vector_reserve(self, n)
|
1181
|
+
|
1182
|
+
def capacity(self):
|
1183
|
+
r"""capacity(Visuals_Geometries_Cylinder_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Cylinder > >::size_type"""
|
1184
|
+
return _VisualsSwig.Visuals_Geometries_Cylinder_Vector_capacity(self)
|
1185
|
+
__swig_destroy__ = _VisualsSwig.delete_Visuals_Geometries_Cylinder_Vector
|
1186
|
+
|
1187
|
+
# Register Visuals_Geometries_Cylinder_Vector in _VisualsSwig:
|
1188
|
+
_VisualsSwig.Visuals_Geometries_Cylinder_Vector_swigregister(Visuals_Geometries_Cylinder_Vector)
|
1189
|
+
|
1190
|
+
class Visuals_Geometries_ExternalTriMeshGeometry_Vector(object):
|
1191
|
+
r"""Proxy of C++ std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > > class."""
|
1192
|
+
|
1193
|
+
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
1194
|
+
__repr__ = _swig_repr
|
1195
|
+
|
1196
|
+
def iterator(self):
|
1197
|
+
r"""iterator(Visuals_Geometries_ExternalTriMeshGeometry_Vector self) -> SwigPyIterator"""
|
1198
|
+
return _VisualsSwig.Visuals_Geometries_ExternalTriMeshGeometry_Vector_iterator(self)
|
1199
|
+
def __iter__(self):
|
1200
|
+
return self.iterator()
|
1201
|
+
|
1202
|
+
def __nonzero__(self):
|
1203
|
+
r"""__nonzero__(Visuals_Geometries_ExternalTriMeshGeometry_Vector self) -> bool"""
|
1204
|
+
return _VisualsSwig.Visuals_Geometries_ExternalTriMeshGeometry_Vector___nonzero__(self)
|
1205
|
+
|
1206
|
+
def __bool__(self):
|
1207
|
+
r"""__bool__(Visuals_Geometries_ExternalTriMeshGeometry_Vector self) -> bool"""
|
1208
|
+
return _VisualsSwig.Visuals_Geometries_ExternalTriMeshGeometry_Vector___bool__(self)
|
1209
|
+
|
1210
|
+
def __len__(self):
|
1211
|
+
r"""__len__(Visuals_Geometries_ExternalTriMeshGeometry_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::size_type"""
|
1212
|
+
return _VisualsSwig.Visuals_Geometries_ExternalTriMeshGeometry_Vector___len__(self)
|
1213
|
+
|
1214
|
+
def __getslice__(self, i, j):
|
1215
|
+
r"""
|
1216
|
+
__getslice__(Visuals_Geometries_ExternalTriMeshGeometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::difference_type i, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::difference_type j) -> Visuals_Geometries_ExternalTriMeshGeometry_Vector
|
1217
|
+
|
1218
|
+
Parameters
|
1219
|
+
----------
|
1220
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::difference_type
|
1221
|
+
j: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::difference_type
|
1222
|
+
|
1223
|
+
"""
|
1224
|
+
return _VisualsSwig.Visuals_Geometries_ExternalTriMeshGeometry_Vector___getslice__(self, i, j)
|
1225
|
+
|
1226
|
+
def __setslice__(self, *args):
|
1227
|
+
r"""
|
1228
|
+
__setslice__(Visuals_Geometries_ExternalTriMeshGeometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::difference_type i, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::difference_type j)
|
1229
|
+
|
1230
|
+
Parameters
|
1231
|
+
----------
|
1232
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::difference_type
|
1233
|
+
j: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::difference_type
|
1234
|
+
|
1235
|
+
__setslice__(Visuals_Geometries_ExternalTriMeshGeometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::difference_type i, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::difference_type j, Visuals_Geometries_ExternalTriMeshGeometry_Vector v)
|
1236
|
+
|
1237
|
+
Parameters
|
1238
|
+
----------
|
1239
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::difference_type
|
1240
|
+
j: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::difference_type
|
1241
|
+
v: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry >,std::allocator< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > > > const &
|
1242
|
+
|
1243
|
+
"""
|
1244
|
+
return _VisualsSwig.Visuals_Geometries_ExternalTriMeshGeometry_Vector___setslice__(self, *args)
|
1245
|
+
|
1246
|
+
def __delslice__(self, i, j):
|
1247
|
+
r"""
|
1248
|
+
__delslice__(Visuals_Geometries_ExternalTriMeshGeometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::difference_type i, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::difference_type j)
|
1249
|
+
|
1250
|
+
Parameters
|
1251
|
+
----------
|
1252
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::difference_type
|
1253
|
+
j: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::difference_type
|
1254
|
+
|
1255
|
+
"""
|
1256
|
+
return _VisualsSwig.Visuals_Geometries_ExternalTriMeshGeometry_Vector___delslice__(self, i, j)
|
1257
|
+
|
1258
|
+
def __delitem__(self, *args):
|
1259
|
+
r"""
|
1260
|
+
__delitem__(Visuals_Geometries_ExternalTriMeshGeometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::difference_type i)
|
1261
|
+
|
1262
|
+
Parameters
|
1263
|
+
----------
|
1264
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::difference_type
|
1265
|
+
|
1266
|
+
__delitem__(Visuals_Geometries_ExternalTriMeshGeometry_Vector self, PySliceObject * slice)
|
1267
|
+
|
1268
|
+
Parameters
|
1269
|
+
----------
|
1270
|
+
slice: PySliceObject *
|
1271
|
+
|
1272
|
+
"""
|
1273
|
+
return _VisualsSwig.Visuals_Geometries_ExternalTriMeshGeometry_Vector___delitem__(self, *args)
|
1274
|
+
|
1275
|
+
def __getitem__(self, *args):
|
1276
|
+
r"""
|
1277
|
+
__getitem__(Visuals_Geometries_ExternalTriMeshGeometry_Vector self, PySliceObject * slice) -> Visuals_Geometries_ExternalTriMeshGeometry_Vector
|
1278
|
+
|
1279
|
+
Parameters
|
1280
|
+
----------
|
1281
|
+
slice: PySliceObject *
|
1282
|
+
|
1283
|
+
__getitem__(Visuals_Geometries_ExternalTriMeshGeometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::difference_type i) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::value_type const &
|
1284
|
+
|
1285
|
+
Parameters
|
1286
|
+
----------
|
1287
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::difference_type
|
1288
|
+
|
1289
|
+
"""
|
1290
|
+
return _VisualsSwig.Visuals_Geometries_ExternalTriMeshGeometry_Vector___getitem__(self, *args)
|
1291
|
+
|
1292
|
+
def __setitem__(self, *args):
|
1293
|
+
r"""
|
1294
|
+
__setitem__(Visuals_Geometries_ExternalTriMeshGeometry_Vector self, PySliceObject * slice, Visuals_Geometries_ExternalTriMeshGeometry_Vector v)
|
1295
|
+
|
1296
|
+
Parameters
|
1297
|
+
----------
|
1298
|
+
slice: PySliceObject *
|
1299
|
+
v: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry >,std::allocator< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > > > const &
|
1300
|
+
|
1301
|
+
__setitem__(Visuals_Geometries_ExternalTriMeshGeometry_Vector self, PySliceObject * slice)
|
1302
|
+
|
1303
|
+
Parameters
|
1304
|
+
----------
|
1305
|
+
slice: PySliceObject *
|
1306
|
+
|
1307
|
+
__setitem__(Visuals_Geometries_ExternalTriMeshGeometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::difference_type i, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::value_type const & x)
|
1308
|
+
|
1309
|
+
Parameters
|
1310
|
+
----------
|
1311
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::difference_type
|
1312
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::value_type const &
|
1313
|
+
|
1314
|
+
"""
|
1315
|
+
return _VisualsSwig.Visuals_Geometries_ExternalTriMeshGeometry_Vector___setitem__(self, *args)
|
1316
|
+
|
1317
|
+
def pop(self):
|
1318
|
+
r"""pop(Visuals_Geometries_ExternalTriMeshGeometry_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::value_type"""
|
1319
|
+
return _VisualsSwig.Visuals_Geometries_ExternalTriMeshGeometry_Vector_pop(self)
|
1320
|
+
|
1321
|
+
def append(self, x):
|
1322
|
+
r"""
|
1323
|
+
append(Visuals_Geometries_ExternalTriMeshGeometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::value_type const & x)
|
1324
|
+
|
1325
|
+
Parameters
|
1326
|
+
----------
|
1327
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::value_type const &
|
1328
|
+
|
1329
|
+
"""
|
1330
|
+
return _VisualsSwig.Visuals_Geometries_ExternalTriMeshGeometry_Vector_append(self, x)
|
1331
|
+
|
1332
|
+
def empty(self):
|
1333
|
+
r"""empty(Visuals_Geometries_ExternalTriMeshGeometry_Vector self) -> bool"""
|
1334
|
+
return _VisualsSwig.Visuals_Geometries_ExternalTriMeshGeometry_Vector_empty(self)
|
1335
|
+
|
1336
|
+
def size(self):
|
1337
|
+
r"""size(Visuals_Geometries_ExternalTriMeshGeometry_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::size_type"""
|
1338
|
+
return _VisualsSwig.Visuals_Geometries_ExternalTriMeshGeometry_Vector_size(self)
|
1339
|
+
|
1340
|
+
def swap(self, v):
|
1341
|
+
r"""
|
1342
|
+
swap(Visuals_Geometries_ExternalTriMeshGeometry_Vector self, Visuals_Geometries_ExternalTriMeshGeometry_Vector v)
|
1343
|
+
|
1344
|
+
Parameters
|
1345
|
+
----------
|
1346
|
+
v: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > > &
|
1347
|
+
|
1348
|
+
"""
|
1349
|
+
return _VisualsSwig.Visuals_Geometries_ExternalTriMeshGeometry_Vector_swap(self, v)
|
1350
|
+
|
1351
|
+
def begin(self):
|
1352
|
+
r"""begin(Visuals_Geometries_ExternalTriMeshGeometry_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::iterator"""
|
1353
|
+
return _VisualsSwig.Visuals_Geometries_ExternalTriMeshGeometry_Vector_begin(self)
|
1354
|
+
|
1355
|
+
def end(self):
|
1356
|
+
r"""end(Visuals_Geometries_ExternalTriMeshGeometry_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::iterator"""
|
1357
|
+
return _VisualsSwig.Visuals_Geometries_ExternalTriMeshGeometry_Vector_end(self)
|
1358
|
+
|
1359
|
+
def rbegin(self):
|
1360
|
+
r"""rbegin(Visuals_Geometries_ExternalTriMeshGeometry_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::reverse_iterator"""
|
1361
|
+
return _VisualsSwig.Visuals_Geometries_ExternalTriMeshGeometry_Vector_rbegin(self)
|
1362
|
+
|
1363
|
+
def rend(self):
|
1364
|
+
r"""rend(Visuals_Geometries_ExternalTriMeshGeometry_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::reverse_iterator"""
|
1365
|
+
return _VisualsSwig.Visuals_Geometries_ExternalTriMeshGeometry_Vector_rend(self)
|
1366
|
+
|
1367
|
+
def clear(self):
|
1368
|
+
r"""clear(Visuals_Geometries_ExternalTriMeshGeometry_Vector self)"""
|
1369
|
+
return _VisualsSwig.Visuals_Geometries_ExternalTriMeshGeometry_Vector_clear(self)
|
1370
|
+
|
1371
|
+
def get_allocator(self):
|
1372
|
+
r"""get_allocator(Visuals_Geometries_ExternalTriMeshGeometry_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::allocator_type"""
|
1373
|
+
return _VisualsSwig.Visuals_Geometries_ExternalTriMeshGeometry_Vector_get_allocator(self)
|
1374
|
+
|
1375
|
+
def pop_back(self):
|
1376
|
+
r"""pop_back(Visuals_Geometries_ExternalTriMeshGeometry_Vector self)"""
|
1377
|
+
return _VisualsSwig.Visuals_Geometries_ExternalTriMeshGeometry_Vector_pop_back(self)
|
1378
|
+
|
1379
|
+
def erase(self, *args):
|
1380
|
+
r"""
|
1381
|
+
erase(Visuals_Geometries_ExternalTriMeshGeometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::iterator pos) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::iterator
|
1382
|
+
|
1383
|
+
Parameters
|
1384
|
+
----------
|
1385
|
+
pos: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::iterator
|
1386
|
+
|
1387
|
+
erase(Visuals_Geometries_ExternalTriMeshGeometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::iterator first, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::iterator last) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::iterator
|
1388
|
+
|
1389
|
+
Parameters
|
1390
|
+
----------
|
1391
|
+
first: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::iterator
|
1392
|
+
last: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::iterator
|
1393
|
+
|
1394
|
+
"""
|
1395
|
+
return _VisualsSwig.Visuals_Geometries_ExternalTriMeshGeometry_Vector_erase(self, *args)
|
1396
|
+
|
1397
|
+
def __init__(self, *args):
|
1398
|
+
r"""
|
1399
|
+
__init__(Visuals_Geometries_ExternalTriMeshGeometry_Vector self) -> Visuals_Geometries_ExternalTriMeshGeometry_Vector
|
1400
|
+
__init__(Visuals_Geometries_ExternalTriMeshGeometry_Vector self, Visuals_Geometries_ExternalTriMeshGeometry_Vector other) -> Visuals_Geometries_ExternalTriMeshGeometry_Vector
|
1401
|
+
|
1402
|
+
Parameters
|
1403
|
+
----------
|
1404
|
+
other: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > > const &
|
1405
|
+
|
1406
|
+
__init__(Visuals_Geometries_ExternalTriMeshGeometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::size_type size) -> Visuals_Geometries_ExternalTriMeshGeometry_Vector
|
1407
|
+
|
1408
|
+
Parameters
|
1409
|
+
----------
|
1410
|
+
size: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::size_type
|
1411
|
+
|
1412
|
+
__init__(Visuals_Geometries_ExternalTriMeshGeometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::size_type size, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::value_type const & value) -> Visuals_Geometries_ExternalTriMeshGeometry_Vector
|
1413
|
+
|
1414
|
+
Parameters
|
1415
|
+
----------
|
1416
|
+
size: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::size_type
|
1417
|
+
value: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::value_type const &
|
1418
|
+
|
1419
|
+
"""
|
1420
|
+
_VisualsSwig.Visuals_Geometries_ExternalTriMeshGeometry_Vector_swiginit(self, _VisualsSwig.new_Visuals_Geometries_ExternalTriMeshGeometry_Vector(*args))
|
1421
|
+
|
1422
|
+
def push_back(self, x):
|
1423
|
+
r"""
|
1424
|
+
push_back(Visuals_Geometries_ExternalTriMeshGeometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::value_type const & x)
|
1425
|
+
|
1426
|
+
Parameters
|
1427
|
+
----------
|
1428
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::value_type const &
|
1429
|
+
|
1430
|
+
"""
|
1431
|
+
return _VisualsSwig.Visuals_Geometries_ExternalTriMeshGeometry_Vector_push_back(self, x)
|
1432
|
+
|
1433
|
+
def front(self):
|
1434
|
+
r"""front(Visuals_Geometries_ExternalTriMeshGeometry_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::value_type const &"""
|
1435
|
+
return _VisualsSwig.Visuals_Geometries_ExternalTriMeshGeometry_Vector_front(self)
|
1436
|
+
|
1437
|
+
def back(self):
|
1438
|
+
r"""back(Visuals_Geometries_ExternalTriMeshGeometry_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::value_type const &"""
|
1439
|
+
return _VisualsSwig.Visuals_Geometries_ExternalTriMeshGeometry_Vector_back(self)
|
1440
|
+
|
1441
|
+
def assign(self, n, x):
|
1442
|
+
r"""
|
1443
|
+
assign(Visuals_Geometries_ExternalTriMeshGeometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::size_type n, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::value_type const & x)
|
1444
|
+
|
1445
|
+
Parameters
|
1446
|
+
----------
|
1447
|
+
n: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::size_type
|
1448
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::value_type const &
|
1449
|
+
|
1450
|
+
"""
|
1451
|
+
return _VisualsSwig.Visuals_Geometries_ExternalTriMeshGeometry_Vector_assign(self, n, x)
|
1452
|
+
|
1453
|
+
def resize(self, *args):
|
1454
|
+
r"""
|
1455
|
+
resize(Visuals_Geometries_ExternalTriMeshGeometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::size_type new_size)
|
1456
|
+
|
1457
|
+
Parameters
|
1458
|
+
----------
|
1459
|
+
new_size: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::size_type
|
1460
|
+
|
1461
|
+
resize(Visuals_Geometries_ExternalTriMeshGeometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::size_type new_size, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::value_type const & x)
|
1462
|
+
|
1463
|
+
Parameters
|
1464
|
+
----------
|
1465
|
+
new_size: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::size_type
|
1466
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::value_type const &
|
1467
|
+
|
1468
|
+
"""
|
1469
|
+
return _VisualsSwig.Visuals_Geometries_ExternalTriMeshGeometry_Vector_resize(self, *args)
|
1470
|
+
|
1471
|
+
def insert(self, *args):
|
1472
|
+
r"""
|
1473
|
+
insert(Visuals_Geometries_ExternalTriMeshGeometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::iterator pos, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::value_type const & x) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::iterator
|
1474
|
+
|
1475
|
+
Parameters
|
1476
|
+
----------
|
1477
|
+
pos: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::iterator
|
1478
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::value_type const &
|
1479
|
+
|
1480
|
+
insert(Visuals_Geometries_ExternalTriMeshGeometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::iterator pos, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::size_type n, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::value_type const & x)
|
1481
|
+
|
1482
|
+
Parameters
|
1483
|
+
----------
|
1484
|
+
pos: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::iterator
|
1485
|
+
n: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::size_type
|
1486
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::value_type const &
|
1487
|
+
|
1488
|
+
"""
|
1489
|
+
return _VisualsSwig.Visuals_Geometries_ExternalTriMeshGeometry_Vector_insert(self, *args)
|
1490
|
+
|
1491
|
+
def reserve(self, n):
|
1492
|
+
r"""
|
1493
|
+
reserve(Visuals_Geometries_ExternalTriMeshGeometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::size_type n)
|
1494
|
+
|
1495
|
+
Parameters
|
1496
|
+
----------
|
1497
|
+
n: std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::size_type
|
1498
|
+
|
1499
|
+
"""
|
1500
|
+
return _VisualsSwig.Visuals_Geometries_ExternalTriMeshGeometry_Vector_reserve(self, n)
|
1501
|
+
|
1502
|
+
def capacity(self):
|
1503
|
+
r"""capacity(Visuals_Geometries_ExternalTriMeshGeometry_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::ExternalTriMeshGeometry > >::size_type"""
|
1504
|
+
return _VisualsSwig.Visuals_Geometries_ExternalTriMeshGeometry_Vector_capacity(self)
|
1505
|
+
__swig_destroy__ = _VisualsSwig.delete_Visuals_Geometries_ExternalTriMeshGeometry_Vector
|
1506
|
+
|
1507
|
+
# Register Visuals_Geometries_ExternalTriMeshGeometry_Vector in _VisualsSwig:
|
1508
|
+
_VisualsSwig.Visuals_Geometries_ExternalTriMeshGeometry_Vector_swigregister(Visuals_Geometries_ExternalTriMeshGeometry_Vector)
|
1509
|
+
|
1510
|
+
class Visuals_Geometries_Geometry_Vector(object):
|
1511
|
+
r"""Proxy of C++ std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > > class."""
|
1512
|
+
|
1513
|
+
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
1514
|
+
__repr__ = _swig_repr
|
1515
|
+
|
1516
|
+
def iterator(self):
|
1517
|
+
r"""iterator(Visuals_Geometries_Geometry_Vector self) -> SwigPyIterator"""
|
1518
|
+
return _VisualsSwig.Visuals_Geometries_Geometry_Vector_iterator(self)
|
1519
|
+
def __iter__(self):
|
1520
|
+
return self.iterator()
|
1521
|
+
|
1522
|
+
def __nonzero__(self):
|
1523
|
+
r"""__nonzero__(Visuals_Geometries_Geometry_Vector self) -> bool"""
|
1524
|
+
return _VisualsSwig.Visuals_Geometries_Geometry_Vector___nonzero__(self)
|
1525
|
+
|
1526
|
+
def __bool__(self):
|
1527
|
+
r"""__bool__(Visuals_Geometries_Geometry_Vector self) -> bool"""
|
1528
|
+
return _VisualsSwig.Visuals_Geometries_Geometry_Vector___bool__(self)
|
1529
|
+
|
1530
|
+
def __len__(self):
|
1531
|
+
r"""__len__(Visuals_Geometries_Geometry_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::size_type"""
|
1532
|
+
return _VisualsSwig.Visuals_Geometries_Geometry_Vector___len__(self)
|
1533
|
+
|
1534
|
+
def __getslice__(self, i, j):
|
1535
|
+
r"""
|
1536
|
+
__getslice__(Visuals_Geometries_Geometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::difference_type i, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::difference_type j) -> Visuals_Geometries_Geometry_Vector
|
1537
|
+
|
1538
|
+
Parameters
|
1539
|
+
----------
|
1540
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::difference_type
|
1541
|
+
j: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::difference_type
|
1542
|
+
|
1543
|
+
"""
|
1544
|
+
return _VisualsSwig.Visuals_Geometries_Geometry_Vector___getslice__(self, i, j)
|
1545
|
+
|
1546
|
+
def __setslice__(self, *args):
|
1547
|
+
r"""
|
1548
|
+
__setslice__(Visuals_Geometries_Geometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::difference_type i, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::difference_type j)
|
1549
|
+
|
1550
|
+
Parameters
|
1551
|
+
----------
|
1552
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::difference_type
|
1553
|
+
j: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::difference_type
|
1554
|
+
|
1555
|
+
__setslice__(Visuals_Geometries_Geometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::difference_type i, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::difference_type j, Visuals_Geometries_Geometry_Vector v)
|
1556
|
+
|
1557
|
+
Parameters
|
1558
|
+
----------
|
1559
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::difference_type
|
1560
|
+
j: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::difference_type
|
1561
|
+
v: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry >,std::allocator< std::shared_ptr< openplx::Visuals::Geometries::Geometry > > > const &
|
1562
|
+
|
1563
|
+
"""
|
1564
|
+
return _VisualsSwig.Visuals_Geometries_Geometry_Vector___setslice__(self, *args)
|
1565
|
+
|
1566
|
+
def __delslice__(self, i, j):
|
1567
|
+
r"""
|
1568
|
+
__delslice__(Visuals_Geometries_Geometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::difference_type i, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::difference_type j)
|
1569
|
+
|
1570
|
+
Parameters
|
1571
|
+
----------
|
1572
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::difference_type
|
1573
|
+
j: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::difference_type
|
1574
|
+
|
1575
|
+
"""
|
1576
|
+
return _VisualsSwig.Visuals_Geometries_Geometry_Vector___delslice__(self, i, j)
|
1577
|
+
|
1578
|
+
def __delitem__(self, *args):
|
1579
|
+
r"""
|
1580
|
+
__delitem__(Visuals_Geometries_Geometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::difference_type i)
|
1581
|
+
|
1582
|
+
Parameters
|
1583
|
+
----------
|
1584
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::difference_type
|
1585
|
+
|
1586
|
+
__delitem__(Visuals_Geometries_Geometry_Vector self, PySliceObject * slice)
|
1587
|
+
|
1588
|
+
Parameters
|
1589
|
+
----------
|
1590
|
+
slice: PySliceObject *
|
1591
|
+
|
1592
|
+
"""
|
1593
|
+
return _VisualsSwig.Visuals_Geometries_Geometry_Vector___delitem__(self, *args)
|
1594
|
+
|
1595
|
+
def __getitem__(self, *args):
|
1596
|
+
r"""
|
1597
|
+
__getitem__(Visuals_Geometries_Geometry_Vector self, PySliceObject * slice) -> Visuals_Geometries_Geometry_Vector
|
1598
|
+
|
1599
|
+
Parameters
|
1600
|
+
----------
|
1601
|
+
slice: PySliceObject *
|
1602
|
+
|
1603
|
+
__getitem__(Visuals_Geometries_Geometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::difference_type i) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::value_type const &
|
1604
|
+
|
1605
|
+
Parameters
|
1606
|
+
----------
|
1607
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::difference_type
|
1608
|
+
|
1609
|
+
"""
|
1610
|
+
return _VisualsSwig.Visuals_Geometries_Geometry_Vector___getitem__(self, *args)
|
1611
|
+
|
1612
|
+
def __setitem__(self, *args):
|
1613
|
+
r"""
|
1614
|
+
__setitem__(Visuals_Geometries_Geometry_Vector self, PySliceObject * slice, Visuals_Geometries_Geometry_Vector v)
|
1615
|
+
|
1616
|
+
Parameters
|
1617
|
+
----------
|
1618
|
+
slice: PySliceObject *
|
1619
|
+
v: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry >,std::allocator< std::shared_ptr< openplx::Visuals::Geometries::Geometry > > > const &
|
1620
|
+
|
1621
|
+
__setitem__(Visuals_Geometries_Geometry_Vector self, PySliceObject * slice)
|
1622
|
+
|
1623
|
+
Parameters
|
1624
|
+
----------
|
1625
|
+
slice: PySliceObject *
|
1626
|
+
|
1627
|
+
__setitem__(Visuals_Geometries_Geometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::difference_type i, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::value_type const & x)
|
1628
|
+
|
1629
|
+
Parameters
|
1630
|
+
----------
|
1631
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::difference_type
|
1632
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::value_type const &
|
1633
|
+
|
1634
|
+
"""
|
1635
|
+
return _VisualsSwig.Visuals_Geometries_Geometry_Vector___setitem__(self, *args)
|
1636
|
+
|
1637
|
+
def pop(self):
|
1638
|
+
r"""pop(Visuals_Geometries_Geometry_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::value_type"""
|
1639
|
+
return _VisualsSwig.Visuals_Geometries_Geometry_Vector_pop(self)
|
1640
|
+
|
1641
|
+
def append(self, x):
|
1642
|
+
r"""
|
1643
|
+
append(Visuals_Geometries_Geometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::value_type const & x)
|
1644
|
+
|
1645
|
+
Parameters
|
1646
|
+
----------
|
1647
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::value_type const &
|
1648
|
+
|
1649
|
+
"""
|
1650
|
+
return _VisualsSwig.Visuals_Geometries_Geometry_Vector_append(self, x)
|
1651
|
+
|
1652
|
+
def empty(self):
|
1653
|
+
r"""empty(Visuals_Geometries_Geometry_Vector self) -> bool"""
|
1654
|
+
return _VisualsSwig.Visuals_Geometries_Geometry_Vector_empty(self)
|
1655
|
+
|
1656
|
+
def size(self):
|
1657
|
+
r"""size(Visuals_Geometries_Geometry_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::size_type"""
|
1658
|
+
return _VisualsSwig.Visuals_Geometries_Geometry_Vector_size(self)
|
1659
|
+
|
1660
|
+
def swap(self, v):
|
1661
|
+
r"""
|
1662
|
+
swap(Visuals_Geometries_Geometry_Vector self, Visuals_Geometries_Geometry_Vector v)
|
1663
|
+
|
1664
|
+
Parameters
|
1665
|
+
----------
|
1666
|
+
v: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > > &
|
1667
|
+
|
1668
|
+
"""
|
1669
|
+
return _VisualsSwig.Visuals_Geometries_Geometry_Vector_swap(self, v)
|
1670
|
+
|
1671
|
+
def begin(self):
|
1672
|
+
r"""begin(Visuals_Geometries_Geometry_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::iterator"""
|
1673
|
+
return _VisualsSwig.Visuals_Geometries_Geometry_Vector_begin(self)
|
1674
|
+
|
1675
|
+
def end(self):
|
1676
|
+
r"""end(Visuals_Geometries_Geometry_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::iterator"""
|
1677
|
+
return _VisualsSwig.Visuals_Geometries_Geometry_Vector_end(self)
|
1678
|
+
|
1679
|
+
def rbegin(self):
|
1680
|
+
r"""rbegin(Visuals_Geometries_Geometry_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::reverse_iterator"""
|
1681
|
+
return _VisualsSwig.Visuals_Geometries_Geometry_Vector_rbegin(self)
|
1682
|
+
|
1683
|
+
def rend(self):
|
1684
|
+
r"""rend(Visuals_Geometries_Geometry_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::reverse_iterator"""
|
1685
|
+
return _VisualsSwig.Visuals_Geometries_Geometry_Vector_rend(self)
|
1686
|
+
|
1687
|
+
def clear(self):
|
1688
|
+
r"""clear(Visuals_Geometries_Geometry_Vector self)"""
|
1689
|
+
return _VisualsSwig.Visuals_Geometries_Geometry_Vector_clear(self)
|
1690
|
+
|
1691
|
+
def get_allocator(self):
|
1692
|
+
r"""get_allocator(Visuals_Geometries_Geometry_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::allocator_type"""
|
1693
|
+
return _VisualsSwig.Visuals_Geometries_Geometry_Vector_get_allocator(self)
|
1694
|
+
|
1695
|
+
def pop_back(self):
|
1696
|
+
r"""pop_back(Visuals_Geometries_Geometry_Vector self)"""
|
1697
|
+
return _VisualsSwig.Visuals_Geometries_Geometry_Vector_pop_back(self)
|
1698
|
+
|
1699
|
+
def erase(self, *args):
|
1700
|
+
r"""
|
1701
|
+
erase(Visuals_Geometries_Geometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::iterator pos) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::iterator
|
1702
|
+
|
1703
|
+
Parameters
|
1704
|
+
----------
|
1705
|
+
pos: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::iterator
|
1706
|
+
|
1707
|
+
erase(Visuals_Geometries_Geometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::iterator first, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::iterator last) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::iterator
|
1708
|
+
|
1709
|
+
Parameters
|
1710
|
+
----------
|
1711
|
+
first: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::iterator
|
1712
|
+
last: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::iterator
|
1713
|
+
|
1714
|
+
"""
|
1715
|
+
return _VisualsSwig.Visuals_Geometries_Geometry_Vector_erase(self, *args)
|
1716
|
+
|
1717
|
+
def __init__(self, *args):
|
1718
|
+
r"""
|
1719
|
+
__init__(Visuals_Geometries_Geometry_Vector self) -> Visuals_Geometries_Geometry_Vector
|
1720
|
+
__init__(Visuals_Geometries_Geometry_Vector self, Visuals_Geometries_Geometry_Vector other) -> Visuals_Geometries_Geometry_Vector
|
1721
|
+
|
1722
|
+
Parameters
|
1723
|
+
----------
|
1724
|
+
other: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > > const &
|
1725
|
+
|
1726
|
+
__init__(Visuals_Geometries_Geometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::size_type size) -> Visuals_Geometries_Geometry_Vector
|
1727
|
+
|
1728
|
+
Parameters
|
1729
|
+
----------
|
1730
|
+
size: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::size_type
|
1731
|
+
|
1732
|
+
__init__(Visuals_Geometries_Geometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::size_type size, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::value_type const & value) -> Visuals_Geometries_Geometry_Vector
|
1733
|
+
|
1734
|
+
Parameters
|
1735
|
+
----------
|
1736
|
+
size: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::size_type
|
1737
|
+
value: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::value_type const &
|
1738
|
+
|
1739
|
+
"""
|
1740
|
+
_VisualsSwig.Visuals_Geometries_Geometry_Vector_swiginit(self, _VisualsSwig.new_Visuals_Geometries_Geometry_Vector(*args))
|
1741
|
+
|
1742
|
+
def push_back(self, x):
|
1743
|
+
r"""
|
1744
|
+
push_back(Visuals_Geometries_Geometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::value_type const & x)
|
1745
|
+
|
1746
|
+
Parameters
|
1747
|
+
----------
|
1748
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::value_type const &
|
1749
|
+
|
1750
|
+
"""
|
1751
|
+
return _VisualsSwig.Visuals_Geometries_Geometry_Vector_push_back(self, x)
|
1752
|
+
|
1753
|
+
def front(self):
|
1754
|
+
r"""front(Visuals_Geometries_Geometry_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::value_type const &"""
|
1755
|
+
return _VisualsSwig.Visuals_Geometries_Geometry_Vector_front(self)
|
1756
|
+
|
1757
|
+
def back(self):
|
1758
|
+
r"""back(Visuals_Geometries_Geometry_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::value_type const &"""
|
1759
|
+
return _VisualsSwig.Visuals_Geometries_Geometry_Vector_back(self)
|
1760
|
+
|
1761
|
+
def assign(self, n, x):
|
1762
|
+
r"""
|
1763
|
+
assign(Visuals_Geometries_Geometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::size_type n, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::value_type const & x)
|
1764
|
+
|
1765
|
+
Parameters
|
1766
|
+
----------
|
1767
|
+
n: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::size_type
|
1768
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::value_type const &
|
1769
|
+
|
1770
|
+
"""
|
1771
|
+
return _VisualsSwig.Visuals_Geometries_Geometry_Vector_assign(self, n, x)
|
1772
|
+
|
1773
|
+
def resize(self, *args):
|
1774
|
+
r"""
|
1775
|
+
resize(Visuals_Geometries_Geometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::size_type new_size)
|
1776
|
+
|
1777
|
+
Parameters
|
1778
|
+
----------
|
1779
|
+
new_size: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::size_type
|
1780
|
+
|
1781
|
+
resize(Visuals_Geometries_Geometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::size_type new_size, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::value_type const & x)
|
1782
|
+
|
1783
|
+
Parameters
|
1784
|
+
----------
|
1785
|
+
new_size: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::size_type
|
1786
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::value_type const &
|
1787
|
+
|
1788
|
+
"""
|
1789
|
+
return _VisualsSwig.Visuals_Geometries_Geometry_Vector_resize(self, *args)
|
1790
|
+
|
1791
|
+
def insert(self, *args):
|
1792
|
+
r"""
|
1793
|
+
insert(Visuals_Geometries_Geometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::iterator pos, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::value_type const & x) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::iterator
|
1794
|
+
|
1795
|
+
Parameters
|
1796
|
+
----------
|
1797
|
+
pos: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::iterator
|
1798
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::value_type const &
|
1799
|
+
|
1800
|
+
insert(Visuals_Geometries_Geometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::iterator pos, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::size_type n, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::value_type const & x)
|
1801
|
+
|
1802
|
+
Parameters
|
1803
|
+
----------
|
1804
|
+
pos: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::iterator
|
1805
|
+
n: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::size_type
|
1806
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::value_type const &
|
1807
|
+
|
1808
|
+
"""
|
1809
|
+
return _VisualsSwig.Visuals_Geometries_Geometry_Vector_insert(self, *args)
|
1810
|
+
|
1811
|
+
def reserve(self, n):
|
1812
|
+
r"""
|
1813
|
+
reserve(Visuals_Geometries_Geometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::size_type n)
|
1814
|
+
|
1815
|
+
Parameters
|
1816
|
+
----------
|
1817
|
+
n: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::size_type
|
1818
|
+
|
1819
|
+
"""
|
1820
|
+
return _VisualsSwig.Visuals_Geometries_Geometry_Vector_reserve(self, n)
|
1821
|
+
|
1822
|
+
def capacity(self):
|
1823
|
+
r"""capacity(Visuals_Geometries_Geometry_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Geometry > >::size_type"""
|
1824
|
+
return _VisualsSwig.Visuals_Geometries_Geometry_Vector_capacity(self)
|
1825
|
+
__swig_destroy__ = _VisualsSwig.delete_Visuals_Geometries_Geometry_Vector
|
1826
|
+
|
1827
|
+
# Register Visuals_Geometries_Geometry_Vector in _VisualsSwig:
|
1828
|
+
_VisualsSwig.Visuals_Geometries_Geometry_Vector_swigregister(Visuals_Geometries_Geometry_Vector)
|
1829
|
+
|
1830
|
+
class Visuals_Geometries_Sphere_Vector(object):
|
1831
|
+
r"""Proxy of C++ std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > > class."""
|
1832
|
+
|
1833
|
+
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
1834
|
+
__repr__ = _swig_repr
|
1835
|
+
|
1836
|
+
def iterator(self):
|
1837
|
+
r"""iterator(Visuals_Geometries_Sphere_Vector self) -> SwigPyIterator"""
|
1838
|
+
return _VisualsSwig.Visuals_Geometries_Sphere_Vector_iterator(self)
|
1839
|
+
def __iter__(self):
|
1840
|
+
return self.iterator()
|
1841
|
+
|
1842
|
+
def __nonzero__(self):
|
1843
|
+
r"""__nonzero__(Visuals_Geometries_Sphere_Vector self) -> bool"""
|
1844
|
+
return _VisualsSwig.Visuals_Geometries_Sphere_Vector___nonzero__(self)
|
1845
|
+
|
1846
|
+
def __bool__(self):
|
1847
|
+
r"""__bool__(Visuals_Geometries_Sphere_Vector self) -> bool"""
|
1848
|
+
return _VisualsSwig.Visuals_Geometries_Sphere_Vector___bool__(self)
|
1849
|
+
|
1850
|
+
def __len__(self):
|
1851
|
+
r"""__len__(Visuals_Geometries_Sphere_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::size_type"""
|
1852
|
+
return _VisualsSwig.Visuals_Geometries_Sphere_Vector___len__(self)
|
1853
|
+
|
1854
|
+
def __getslice__(self, i, j):
|
1855
|
+
r"""
|
1856
|
+
__getslice__(Visuals_Geometries_Sphere_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::difference_type i, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::difference_type j) -> Visuals_Geometries_Sphere_Vector
|
1857
|
+
|
1858
|
+
Parameters
|
1859
|
+
----------
|
1860
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::difference_type
|
1861
|
+
j: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::difference_type
|
1862
|
+
|
1863
|
+
"""
|
1864
|
+
return _VisualsSwig.Visuals_Geometries_Sphere_Vector___getslice__(self, i, j)
|
1865
|
+
|
1866
|
+
def __setslice__(self, *args):
|
1867
|
+
r"""
|
1868
|
+
__setslice__(Visuals_Geometries_Sphere_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::difference_type i, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::difference_type j)
|
1869
|
+
|
1870
|
+
Parameters
|
1871
|
+
----------
|
1872
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::difference_type
|
1873
|
+
j: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::difference_type
|
1874
|
+
|
1875
|
+
__setslice__(Visuals_Geometries_Sphere_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::difference_type i, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::difference_type j, Visuals_Geometries_Sphere_Vector v)
|
1876
|
+
|
1877
|
+
Parameters
|
1878
|
+
----------
|
1879
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::difference_type
|
1880
|
+
j: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::difference_type
|
1881
|
+
v: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere >,std::allocator< std::shared_ptr< openplx::Visuals::Geometries::Sphere > > > const &
|
1882
|
+
|
1883
|
+
"""
|
1884
|
+
return _VisualsSwig.Visuals_Geometries_Sphere_Vector___setslice__(self, *args)
|
1885
|
+
|
1886
|
+
def __delslice__(self, i, j):
|
1887
|
+
r"""
|
1888
|
+
__delslice__(Visuals_Geometries_Sphere_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::difference_type i, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::difference_type j)
|
1889
|
+
|
1890
|
+
Parameters
|
1891
|
+
----------
|
1892
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::difference_type
|
1893
|
+
j: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::difference_type
|
1894
|
+
|
1895
|
+
"""
|
1896
|
+
return _VisualsSwig.Visuals_Geometries_Sphere_Vector___delslice__(self, i, j)
|
1897
|
+
|
1898
|
+
def __delitem__(self, *args):
|
1899
|
+
r"""
|
1900
|
+
__delitem__(Visuals_Geometries_Sphere_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::difference_type i)
|
1901
|
+
|
1902
|
+
Parameters
|
1903
|
+
----------
|
1904
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::difference_type
|
1905
|
+
|
1906
|
+
__delitem__(Visuals_Geometries_Sphere_Vector self, PySliceObject * slice)
|
1907
|
+
|
1908
|
+
Parameters
|
1909
|
+
----------
|
1910
|
+
slice: PySliceObject *
|
1911
|
+
|
1912
|
+
"""
|
1913
|
+
return _VisualsSwig.Visuals_Geometries_Sphere_Vector___delitem__(self, *args)
|
1914
|
+
|
1915
|
+
def __getitem__(self, *args):
|
1916
|
+
r"""
|
1917
|
+
__getitem__(Visuals_Geometries_Sphere_Vector self, PySliceObject * slice) -> Visuals_Geometries_Sphere_Vector
|
1918
|
+
|
1919
|
+
Parameters
|
1920
|
+
----------
|
1921
|
+
slice: PySliceObject *
|
1922
|
+
|
1923
|
+
__getitem__(Visuals_Geometries_Sphere_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::difference_type i) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::value_type const &
|
1924
|
+
|
1925
|
+
Parameters
|
1926
|
+
----------
|
1927
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::difference_type
|
1928
|
+
|
1929
|
+
"""
|
1930
|
+
return _VisualsSwig.Visuals_Geometries_Sphere_Vector___getitem__(self, *args)
|
1931
|
+
|
1932
|
+
def __setitem__(self, *args):
|
1933
|
+
r"""
|
1934
|
+
__setitem__(Visuals_Geometries_Sphere_Vector self, PySliceObject * slice, Visuals_Geometries_Sphere_Vector v)
|
1935
|
+
|
1936
|
+
Parameters
|
1937
|
+
----------
|
1938
|
+
slice: PySliceObject *
|
1939
|
+
v: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere >,std::allocator< std::shared_ptr< openplx::Visuals::Geometries::Sphere > > > const &
|
1940
|
+
|
1941
|
+
__setitem__(Visuals_Geometries_Sphere_Vector self, PySliceObject * slice)
|
1942
|
+
|
1943
|
+
Parameters
|
1944
|
+
----------
|
1945
|
+
slice: PySliceObject *
|
1946
|
+
|
1947
|
+
__setitem__(Visuals_Geometries_Sphere_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::difference_type i, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::value_type const & x)
|
1948
|
+
|
1949
|
+
Parameters
|
1950
|
+
----------
|
1951
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::difference_type
|
1952
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::value_type const &
|
1953
|
+
|
1954
|
+
"""
|
1955
|
+
return _VisualsSwig.Visuals_Geometries_Sphere_Vector___setitem__(self, *args)
|
1956
|
+
|
1957
|
+
def pop(self):
|
1958
|
+
r"""pop(Visuals_Geometries_Sphere_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::value_type"""
|
1959
|
+
return _VisualsSwig.Visuals_Geometries_Sphere_Vector_pop(self)
|
1960
|
+
|
1961
|
+
def append(self, x):
|
1962
|
+
r"""
|
1963
|
+
append(Visuals_Geometries_Sphere_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::value_type const & x)
|
1964
|
+
|
1965
|
+
Parameters
|
1966
|
+
----------
|
1967
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::value_type const &
|
1968
|
+
|
1969
|
+
"""
|
1970
|
+
return _VisualsSwig.Visuals_Geometries_Sphere_Vector_append(self, x)
|
1971
|
+
|
1972
|
+
def empty(self):
|
1973
|
+
r"""empty(Visuals_Geometries_Sphere_Vector self) -> bool"""
|
1974
|
+
return _VisualsSwig.Visuals_Geometries_Sphere_Vector_empty(self)
|
1975
|
+
|
1976
|
+
def size(self):
|
1977
|
+
r"""size(Visuals_Geometries_Sphere_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::size_type"""
|
1978
|
+
return _VisualsSwig.Visuals_Geometries_Sphere_Vector_size(self)
|
1979
|
+
|
1980
|
+
def swap(self, v):
|
1981
|
+
r"""
|
1982
|
+
swap(Visuals_Geometries_Sphere_Vector self, Visuals_Geometries_Sphere_Vector v)
|
1983
|
+
|
1984
|
+
Parameters
|
1985
|
+
----------
|
1986
|
+
v: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > > &
|
1987
|
+
|
1988
|
+
"""
|
1989
|
+
return _VisualsSwig.Visuals_Geometries_Sphere_Vector_swap(self, v)
|
1990
|
+
|
1991
|
+
def begin(self):
|
1992
|
+
r"""begin(Visuals_Geometries_Sphere_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::iterator"""
|
1993
|
+
return _VisualsSwig.Visuals_Geometries_Sphere_Vector_begin(self)
|
1994
|
+
|
1995
|
+
def end(self):
|
1996
|
+
r"""end(Visuals_Geometries_Sphere_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::iterator"""
|
1997
|
+
return _VisualsSwig.Visuals_Geometries_Sphere_Vector_end(self)
|
1998
|
+
|
1999
|
+
def rbegin(self):
|
2000
|
+
r"""rbegin(Visuals_Geometries_Sphere_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::reverse_iterator"""
|
2001
|
+
return _VisualsSwig.Visuals_Geometries_Sphere_Vector_rbegin(self)
|
2002
|
+
|
2003
|
+
def rend(self):
|
2004
|
+
r"""rend(Visuals_Geometries_Sphere_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::reverse_iterator"""
|
2005
|
+
return _VisualsSwig.Visuals_Geometries_Sphere_Vector_rend(self)
|
2006
|
+
|
2007
|
+
def clear(self):
|
2008
|
+
r"""clear(Visuals_Geometries_Sphere_Vector self)"""
|
2009
|
+
return _VisualsSwig.Visuals_Geometries_Sphere_Vector_clear(self)
|
2010
|
+
|
2011
|
+
def get_allocator(self):
|
2012
|
+
r"""get_allocator(Visuals_Geometries_Sphere_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::allocator_type"""
|
2013
|
+
return _VisualsSwig.Visuals_Geometries_Sphere_Vector_get_allocator(self)
|
2014
|
+
|
2015
|
+
def pop_back(self):
|
2016
|
+
r"""pop_back(Visuals_Geometries_Sphere_Vector self)"""
|
2017
|
+
return _VisualsSwig.Visuals_Geometries_Sphere_Vector_pop_back(self)
|
2018
|
+
|
2019
|
+
def erase(self, *args):
|
2020
|
+
r"""
|
2021
|
+
erase(Visuals_Geometries_Sphere_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::iterator pos) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::iterator
|
2022
|
+
|
2023
|
+
Parameters
|
2024
|
+
----------
|
2025
|
+
pos: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::iterator
|
2026
|
+
|
2027
|
+
erase(Visuals_Geometries_Sphere_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::iterator first, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::iterator last) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::iterator
|
2028
|
+
|
2029
|
+
Parameters
|
2030
|
+
----------
|
2031
|
+
first: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::iterator
|
2032
|
+
last: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::iterator
|
2033
|
+
|
2034
|
+
"""
|
2035
|
+
return _VisualsSwig.Visuals_Geometries_Sphere_Vector_erase(self, *args)
|
2036
|
+
|
2037
|
+
def __init__(self, *args):
|
2038
|
+
r"""
|
2039
|
+
__init__(Visuals_Geometries_Sphere_Vector self) -> Visuals_Geometries_Sphere_Vector
|
2040
|
+
__init__(Visuals_Geometries_Sphere_Vector self, Visuals_Geometries_Sphere_Vector other) -> Visuals_Geometries_Sphere_Vector
|
2041
|
+
|
2042
|
+
Parameters
|
2043
|
+
----------
|
2044
|
+
other: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > > const &
|
2045
|
+
|
2046
|
+
__init__(Visuals_Geometries_Sphere_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::size_type size) -> Visuals_Geometries_Sphere_Vector
|
2047
|
+
|
2048
|
+
Parameters
|
2049
|
+
----------
|
2050
|
+
size: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::size_type
|
2051
|
+
|
2052
|
+
__init__(Visuals_Geometries_Sphere_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::size_type size, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::value_type const & value) -> Visuals_Geometries_Sphere_Vector
|
2053
|
+
|
2054
|
+
Parameters
|
2055
|
+
----------
|
2056
|
+
size: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::size_type
|
2057
|
+
value: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::value_type const &
|
2058
|
+
|
2059
|
+
"""
|
2060
|
+
_VisualsSwig.Visuals_Geometries_Sphere_Vector_swiginit(self, _VisualsSwig.new_Visuals_Geometries_Sphere_Vector(*args))
|
2061
|
+
|
2062
|
+
def push_back(self, x):
|
2063
|
+
r"""
|
2064
|
+
push_back(Visuals_Geometries_Sphere_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::value_type const & x)
|
2065
|
+
|
2066
|
+
Parameters
|
2067
|
+
----------
|
2068
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::value_type const &
|
2069
|
+
|
2070
|
+
"""
|
2071
|
+
return _VisualsSwig.Visuals_Geometries_Sphere_Vector_push_back(self, x)
|
2072
|
+
|
2073
|
+
def front(self):
|
2074
|
+
r"""front(Visuals_Geometries_Sphere_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::value_type const &"""
|
2075
|
+
return _VisualsSwig.Visuals_Geometries_Sphere_Vector_front(self)
|
2076
|
+
|
2077
|
+
def back(self):
|
2078
|
+
r"""back(Visuals_Geometries_Sphere_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::value_type const &"""
|
2079
|
+
return _VisualsSwig.Visuals_Geometries_Sphere_Vector_back(self)
|
2080
|
+
|
2081
|
+
def assign(self, n, x):
|
2082
|
+
r"""
|
2083
|
+
assign(Visuals_Geometries_Sphere_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::size_type n, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::value_type const & x)
|
2084
|
+
|
2085
|
+
Parameters
|
2086
|
+
----------
|
2087
|
+
n: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::size_type
|
2088
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::value_type const &
|
2089
|
+
|
2090
|
+
"""
|
2091
|
+
return _VisualsSwig.Visuals_Geometries_Sphere_Vector_assign(self, n, x)
|
2092
|
+
|
2093
|
+
def resize(self, *args):
|
2094
|
+
r"""
|
2095
|
+
resize(Visuals_Geometries_Sphere_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::size_type new_size)
|
2096
|
+
|
2097
|
+
Parameters
|
2098
|
+
----------
|
2099
|
+
new_size: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::size_type
|
2100
|
+
|
2101
|
+
resize(Visuals_Geometries_Sphere_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::size_type new_size, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::value_type const & x)
|
2102
|
+
|
2103
|
+
Parameters
|
2104
|
+
----------
|
2105
|
+
new_size: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::size_type
|
2106
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::value_type const &
|
2107
|
+
|
2108
|
+
"""
|
2109
|
+
return _VisualsSwig.Visuals_Geometries_Sphere_Vector_resize(self, *args)
|
2110
|
+
|
2111
|
+
def insert(self, *args):
|
2112
|
+
r"""
|
2113
|
+
insert(Visuals_Geometries_Sphere_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::iterator pos, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::value_type const & x) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::iterator
|
2114
|
+
|
2115
|
+
Parameters
|
2116
|
+
----------
|
2117
|
+
pos: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::iterator
|
2118
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::value_type const &
|
2119
|
+
|
2120
|
+
insert(Visuals_Geometries_Sphere_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::iterator pos, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::size_type n, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::value_type const & x)
|
2121
|
+
|
2122
|
+
Parameters
|
2123
|
+
----------
|
2124
|
+
pos: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::iterator
|
2125
|
+
n: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::size_type
|
2126
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::value_type const &
|
2127
|
+
|
2128
|
+
"""
|
2129
|
+
return _VisualsSwig.Visuals_Geometries_Sphere_Vector_insert(self, *args)
|
2130
|
+
|
2131
|
+
def reserve(self, n):
|
2132
|
+
r"""
|
2133
|
+
reserve(Visuals_Geometries_Sphere_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::size_type n)
|
2134
|
+
|
2135
|
+
Parameters
|
2136
|
+
----------
|
2137
|
+
n: std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::size_type
|
2138
|
+
|
2139
|
+
"""
|
2140
|
+
return _VisualsSwig.Visuals_Geometries_Sphere_Vector_reserve(self, n)
|
2141
|
+
|
2142
|
+
def capacity(self):
|
2143
|
+
r"""capacity(Visuals_Geometries_Sphere_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::Sphere > >::size_type"""
|
2144
|
+
return _VisualsSwig.Visuals_Geometries_Sphere_Vector_capacity(self)
|
2145
|
+
__swig_destroy__ = _VisualsSwig.delete_Visuals_Geometries_Sphere_Vector
|
2146
|
+
|
2147
|
+
# Register Visuals_Geometries_Sphere_Vector in _VisualsSwig:
|
2148
|
+
_VisualsSwig.Visuals_Geometries_Sphere_Vector_swigregister(Visuals_Geometries_Sphere_Vector)
|
2149
|
+
|
2150
|
+
class Visuals_Geometries_TriMeshGeometry_Vector(object):
|
2151
|
+
r"""Proxy of C++ std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > > class."""
|
2152
|
+
|
2153
|
+
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
2154
|
+
__repr__ = _swig_repr
|
2155
|
+
|
2156
|
+
def iterator(self):
|
2157
|
+
r"""iterator(Visuals_Geometries_TriMeshGeometry_Vector self) -> SwigPyIterator"""
|
2158
|
+
return _VisualsSwig.Visuals_Geometries_TriMeshGeometry_Vector_iterator(self)
|
2159
|
+
def __iter__(self):
|
2160
|
+
return self.iterator()
|
2161
|
+
|
2162
|
+
def __nonzero__(self):
|
2163
|
+
r"""__nonzero__(Visuals_Geometries_TriMeshGeometry_Vector self) -> bool"""
|
2164
|
+
return _VisualsSwig.Visuals_Geometries_TriMeshGeometry_Vector___nonzero__(self)
|
2165
|
+
|
2166
|
+
def __bool__(self):
|
2167
|
+
r"""__bool__(Visuals_Geometries_TriMeshGeometry_Vector self) -> bool"""
|
2168
|
+
return _VisualsSwig.Visuals_Geometries_TriMeshGeometry_Vector___bool__(self)
|
2169
|
+
|
2170
|
+
def __len__(self):
|
2171
|
+
r"""__len__(Visuals_Geometries_TriMeshGeometry_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::size_type"""
|
2172
|
+
return _VisualsSwig.Visuals_Geometries_TriMeshGeometry_Vector___len__(self)
|
2173
|
+
|
2174
|
+
def __getslice__(self, i, j):
|
2175
|
+
r"""
|
2176
|
+
__getslice__(Visuals_Geometries_TriMeshGeometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::difference_type i, std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::difference_type j) -> Visuals_Geometries_TriMeshGeometry_Vector
|
2177
|
+
|
2178
|
+
Parameters
|
2179
|
+
----------
|
2180
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::difference_type
|
2181
|
+
j: std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::difference_type
|
2182
|
+
|
2183
|
+
"""
|
2184
|
+
return _VisualsSwig.Visuals_Geometries_TriMeshGeometry_Vector___getslice__(self, i, j)
|
2185
|
+
|
2186
|
+
def __setslice__(self, *args):
|
2187
|
+
r"""
|
2188
|
+
__setslice__(Visuals_Geometries_TriMeshGeometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::difference_type i, std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::difference_type j)
|
2189
|
+
|
2190
|
+
Parameters
|
2191
|
+
----------
|
2192
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::difference_type
|
2193
|
+
j: std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::difference_type
|
2194
|
+
|
2195
|
+
__setslice__(Visuals_Geometries_TriMeshGeometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::difference_type i, std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::difference_type j, Visuals_Geometries_TriMeshGeometry_Vector v)
|
2196
|
+
|
2197
|
+
Parameters
|
2198
|
+
----------
|
2199
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::difference_type
|
2200
|
+
j: std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::difference_type
|
2201
|
+
v: std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry >,std::allocator< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > > > const &
|
2202
|
+
|
2203
|
+
"""
|
2204
|
+
return _VisualsSwig.Visuals_Geometries_TriMeshGeometry_Vector___setslice__(self, *args)
|
2205
|
+
|
2206
|
+
def __delslice__(self, i, j):
|
2207
|
+
r"""
|
2208
|
+
__delslice__(Visuals_Geometries_TriMeshGeometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::difference_type i, std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::difference_type j)
|
2209
|
+
|
2210
|
+
Parameters
|
2211
|
+
----------
|
2212
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::difference_type
|
2213
|
+
j: std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::difference_type
|
2214
|
+
|
2215
|
+
"""
|
2216
|
+
return _VisualsSwig.Visuals_Geometries_TriMeshGeometry_Vector___delslice__(self, i, j)
|
2217
|
+
|
2218
|
+
def __delitem__(self, *args):
|
2219
|
+
r"""
|
2220
|
+
__delitem__(Visuals_Geometries_TriMeshGeometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::difference_type i)
|
2221
|
+
|
2222
|
+
Parameters
|
2223
|
+
----------
|
2224
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::difference_type
|
2225
|
+
|
2226
|
+
__delitem__(Visuals_Geometries_TriMeshGeometry_Vector self, PySliceObject * slice)
|
2227
|
+
|
2228
|
+
Parameters
|
2229
|
+
----------
|
2230
|
+
slice: PySliceObject *
|
2231
|
+
|
2232
|
+
"""
|
2233
|
+
return _VisualsSwig.Visuals_Geometries_TriMeshGeometry_Vector___delitem__(self, *args)
|
2234
|
+
|
2235
|
+
def __getitem__(self, *args):
|
2236
|
+
r"""
|
2237
|
+
__getitem__(Visuals_Geometries_TriMeshGeometry_Vector self, PySliceObject * slice) -> Visuals_Geometries_TriMeshGeometry_Vector
|
2238
|
+
|
2239
|
+
Parameters
|
2240
|
+
----------
|
2241
|
+
slice: PySliceObject *
|
2242
|
+
|
2243
|
+
__getitem__(Visuals_Geometries_TriMeshGeometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::difference_type i) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::value_type const &
|
2244
|
+
|
2245
|
+
Parameters
|
2246
|
+
----------
|
2247
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::difference_type
|
2248
|
+
|
2249
|
+
"""
|
2250
|
+
return _VisualsSwig.Visuals_Geometries_TriMeshGeometry_Vector___getitem__(self, *args)
|
2251
|
+
|
2252
|
+
def __setitem__(self, *args):
|
2253
|
+
r"""
|
2254
|
+
__setitem__(Visuals_Geometries_TriMeshGeometry_Vector self, PySliceObject * slice, Visuals_Geometries_TriMeshGeometry_Vector v)
|
2255
|
+
|
2256
|
+
Parameters
|
2257
|
+
----------
|
2258
|
+
slice: PySliceObject *
|
2259
|
+
v: std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry >,std::allocator< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > > > const &
|
2260
|
+
|
2261
|
+
__setitem__(Visuals_Geometries_TriMeshGeometry_Vector self, PySliceObject * slice)
|
2262
|
+
|
2263
|
+
Parameters
|
2264
|
+
----------
|
2265
|
+
slice: PySliceObject *
|
2266
|
+
|
2267
|
+
__setitem__(Visuals_Geometries_TriMeshGeometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::difference_type i, std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::value_type const & x)
|
2268
|
+
|
2269
|
+
Parameters
|
2270
|
+
----------
|
2271
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::difference_type
|
2272
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::value_type const &
|
2273
|
+
|
2274
|
+
"""
|
2275
|
+
return _VisualsSwig.Visuals_Geometries_TriMeshGeometry_Vector___setitem__(self, *args)
|
2276
|
+
|
2277
|
+
def pop(self):
|
2278
|
+
r"""pop(Visuals_Geometries_TriMeshGeometry_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::value_type"""
|
2279
|
+
return _VisualsSwig.Visuals_Geometries_TriMeshGeometry_Vector_pop(self)
|
2280
|
+
|
2281
|
+
def append(self, x):
|
2282
|
+
r"""
|
2283
|
+
append(Visuals_Geometries_TriMeshGeometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::value_type const & x)
|
2284
|
+
|
2285
|
+
Parameters
|
2286
|
+
----------
|
2287
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::value_type const &
|
2288
|
+
|
2289
|
+
"""
|
2290
|
+
return _VisualsSwig.Visuals_Geometries_TriMeshGeometry_Vector_append(self, x)
|
2291
|
+
|
2292
|
+
def empty(self):
|
2293
|
+
r"""empty(Visuals_Geometries_TriMeshGeometry_Vector self) -> bool"""
|
2294
|
+
return _VisualsSwig.Visuals_Geometries_TriMeshGeometry_Vector_empty(self)
|
2295
|
+
|
2296
|
+
def size(self):
|
2297
|
+
r"""size(Visuals_Geometries_TriMeshGeometry_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::size_type"""
|
2298
|
+
return _VisualsSwig.Visuals_Geometries_TriMeshGeometry_Vector_size(self)
|
2299
|
+
|
2300
|
+
def swap(self, v):
|
2301
|
+
r"""
|
2302
|
+
swap(Visuals_Geometries_TriMeshGeometry_Vector self, Visuals_Geometries_TriMeshGeometry_Vector v)
|
2303
|
+
|
2304
|
+
Parameters
|
2305
|
+
----------
|
2306
|
+
v: std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > > &
|
2307
|
+
|
2308
|
+
"""
|
2309
|
+
return _VisualsSwig.Visuals_Geometries_TriMeshGeometry_Vector_swap(self, v)
|
2310
|
+
|
2311
|
+
def begin(self):
|
2312
|
+
r"""begin(Visuals_Geometries_TriMeshGeometry_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::iterator"""
|
2313
|
+
return _VisualsSwig.Visuals_Geometries_TriMeshGeometry_Vector_begin(self)
|
2314
|
+
|
2315
|
+
def end(self):
|
2316
|
+
r"""end(Visuals_Geometries_TriMeshGeometry_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::iterator"""
|
2317
|
+
return _VisualsSwig.Visuals_Geometries_TriMeshGeometry_Vector_end(self)
|
2318
|
+
|
2319
|
+
def rbegin(self):
|
2320
|
+
r"""rbegin(Visuals_Geometries_TriMeshGeometry_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::reverse_iterator"""
|
2321
|
+
return _VisualsSwig.Visuals_Geometries_TriMeshGeometry_Vector_rbegin(self)
|
2322
|
+
|
2323
|
+
def rend(self):
|
2324
|
+
r"""rend(Visuals_Geometries_TriMeshGeometry_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::reverse_iterator"""
|
2325
|
+
return _VisualsSwig.Visuals_Geometries_TriMeshGeometry_Vector_rend(self)
|
2326
|
+
|
2327
|
+
def clear(self):
|
2328
|
+
r"""clear(Visuals_Geometries_TriMeshGeometry_Vector self)"""
|
2329
|
+
return _VisualsSwig.Visuals_Geometries_TriMeshGeometry_Vector_clear(self)
|
2330
|
+
|
2331
|
+
def get_allocator(self):
|
2332
|
+
r"""get_allocator(Visuals_Geometries_TriMeshGeometry_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::allocator_type"""
|
2333
|
+
return _VisualsSwig.Visuals_Geometries_TriMeshGeometry_Vector_get_allocator(self)
|
2334
|
+
|
2335
|
+
def pop_back(self):
|
2336
|
+
r"""pop_back(Visuals_Geometries_TriMeshGeometry_Vector self)"""
|
2337
|
+
return _VisualsSwig.Visuals_Geometries_TriMeshGeometry_Vector_pop_back(self)
|
2338
|
+
|
2339
|
+
def erase(self, *args):
|
2340
|
+
r"""
|
2341
|
+
erase(Visuals_Geometries_TriMeshGeometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::iterator pos) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::iterator
|
2342
|
+
|
2343
|
+
Parameters
|
2344
|
+
----------
|
2345
|
+
pos: std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::iterator
|
2346
|
+
|
2347
|
+
erase(Visuals_Geometries_TriMeshGeometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::iterator first, std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::iterator last) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::iterator
|
2348
|
+
|
2349
|
+
Parameters
|
2350
|
+
----------
|
2351
|
+
first: std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::iterator
|
2352
|
+
last: std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::iterator
|
2353
|
+
|
2354
|
+
"""
|
2355
|
+
return _VisualsSwig.Visuals_Geometries_TriMeshGeometry_Vector_erase(self, *args)
|
2356
|
+
|
2357
|
+
def __init__(self, *args):
|
2358
|
+
r"""
|
2359
|
+
__init__(Visuals_Geometries_TriMeshGeometry_Vector self) -> Visuals_Geometries_TriMeshGeometry_Vector
|
2360
|
+
__init__(Visuals_Geometries_TriMeshGeometry_Vector self, Visuals_Geometries_TriMeshGeometry_Vector other) -> Visuals_Geometries_TriMeshGeometry_Vector
|
2361
|
+
|
2362
|
+
Parameters
|
2363
|
+
----------
|
2364
|
+
other: std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > > const &
|
2365
|
+
|
2366
|
+
__init__(Visuals_Geometries_TriMeshGeometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::size_type size) -> Visuals_Geometries_TriMeshGeometry_Vector
|
2367
|
+
|
2368
|
+
Parameters
|
2369
|
+
----------
|
2370
|
+
size: std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::size_type
|
2371
|
+
|
2372
|
+
__init__(Visuals_Geometries_TriMeshGeometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::size_type size, std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::value_type const & value) -> Visuals_Geometries_TriMeshGeometry_Vector
|
2373
|
+
|
2374
|
+
Parameters
|
2375
|
+
----------
|
2376
|
+
size: std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::size_type
|
2377
|
+
value: std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::value_type const &
|
2378
|
+
|
2379
|
+
"""
|
2380
|
+
_VisualsSwig.Visuals_Geometries_TriMeshGeometry_Vector_swiginit(self, _VisualsSwig.new_Visuals_Geometries_TriMeshGeometry_Vector(*args))
|
2381
|
+
|
2382
|
+
def push_back(self, x):
|
2383
|
+
r"""
|
2384
|
+
push_back(Visuals_Geometries_TriMeshGeometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::value_type const & x)
|
2385
|
+
|
2386
|
+
Parameters
|
2387
|
+
----------
|
2388
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::value_type const &
|
2389
|
+
|
2390
|
+
"""
|
2391
|
+
return _VisualsSwig.Visuals_Geometries_TriMeshGeometry_Vector_push_back(self, x)
|
2392
|
+
|
2393
|
+
def front(self):
|
2394
|
+
r"""front(Visuals_Geometries_TriMeshGeometry_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::value_type const &"""
|
2395
|
+
return _VisualsSwig.Visuals_Geometries_TriMeshGeometry_Vector_front(self)
|
2396
|
+
|
2397
|
+
def back(self):
|
2398
|
+
r"""back(Visuals_Geometries_TriMeshGeometry_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::value_type const &"""
|
2399
|
+
return _VisualsSwig.Visuals_Geometries_TriMeshGeometry_Vector_back(self)
|
2400
|
+
|
2401
|
+
def assign(self, n, x):
|
2402
|
+
r"""
|
2403
|
+
assign(Visuals_Geometries_TriMeshGeometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::size_type n, std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::value_type const & x)
|
2404
|
+
|
2405
|
+
Parameters
|
2406
|
+
----------
|
2407
|
+
n: std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::size_type
|
2408
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::value_type const &
|
2409
|
+
|
2410
|
+
"""
|
2411
|
+
return _VisualsSwig.Visuals_Geometries_TriMeshGeometry_Vector_assign(self, n, x)
|
2412
|
+
|
2413
|
+
def resize(self, *args):
|
2414
|
+
r"""
|
2415
|
+
resize(Visuals_Geometries_TriMeshGeometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::size_type new_size)
|
2416
|
+
|
2417
|
+
Parameters
|
2418
|
+
----------
|
2419
|
+
new_size: std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::size_type
|
2420
|
+
|
2421
|
+
resize(Visuals_Geometries_TriMeshGeometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::size_type new_size, std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::value_type const & x)
|
2422
|
+
|
2423
|
+
Parameters
|
2424
|
+
----------
|
2425
|
+
new_size: std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::size_type
|
2426
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::value_type const &
|
2427
|
+
|
2428
|
+
"""
|
2429
|
+
return _VisualsSwig.Visuals_Geometries_TriMeshGeometry_Vector_resize(self, *args)
|
2430
|
+
|
2431
|
+
def insert(self, *args):
|
2432
|
+
r"""
|
2433
|
+
insert(Visuals_Geometries_TriMeshGeometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::iterator pos, std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::value_type const & x) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::iterator
|
2434
|
+
|
2435
|
+
Parameters
|
2436
|
+
----------
|
2437
|
+
pos: std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::iterator
|
2438
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::value_type const &
|
2439
|
+
|
2440
|
+
insert(Visuals_Geometries_TriMeshGeometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::iterator pos, std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::size_type n, std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::value_type const & x)
|
2441
|
+
|
2442
|
+
Parameters
|
2443
|
+
----------
|
2444
|
+
pos: std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::iterator
|
2445
|
+
n: std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::size_type
|
2446
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::value_type const &
|
2447
|
+
|
2448
|
+
"""
|
2449
|
+
return _VisualsSwig.Visuals_Geometries_TriMeshGeometry_Vector_insert(self, *args)
|
2450
|
+
|
2451
|
+
def reserve(self, n):
|
2452
|
+
r"""
|
2453
|
+
reserve(Visuals_Geometries_TriMeshGeometry_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::size_type n)
|
2454
|
+
|
2455
|
+
Parameters
|
2456
|
+
----------
|
2457
|
+
n: std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::size_type
|
2458
|
+
|
2459
|
+
"""
|
2460
|
+
return _VisualsSwig.Visuals_Geometries_TriMeshGeometry_Vector_reserve(self, n)
|
2461
|
+
|
2462
|
+
def capacity(self):
|
2463
|
+
r"""capacity(Visuals_Geometries_TriMeshGeometry_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Geometries::TriMeshGeometry > >::size_type"""
|
2464
|
+
return _VisualsSwig.Visuals_Geometries_TriMeshGeometry_Vector_capacity(self)
|
2465
|
+
__swig_destroy__ = _VisualsSwig.delete_Visuals_Geometries_TriMeshGeometry_Vector
|
2466
|
+
|
2467
|
+
# Register Visuals_Geometries_TriMeshGeometry_Vector in _VisualsSwig:
|
2468
|
+
_VisualsSwig.Visuals_Geometries_TriMeshGeometry_Vector_swigregister(Visuals_Geometries_TriMeshGeometry_Vector)
|
2469
|
+
|
2470
|
+
class Visuals_Materials_Material_Vector(object):
|
2471
|
+
r"""Proxy of C++ std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > > class."""
|
2472
|
+
|
2473
|
+
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
2474
|
+
__repr__ = _swig_repr
|
2475
|
+
|
2476
|
+
def iterator(self):
|
2477
|
+
r"""iterator(Visuals_Materials_Material_Vector self) -> SwigPyIterator"""
|
2478
|
+
return _VisualsSwig.Visuals_Materials_Material_Vector_iterator(self)
|
2479
|
+
def __iter__(self):
|
2480
|
+
return self.iterator()
|
2481
|
+
|
2482
|
+
def __nonzero__(self):
|
2483
|
+
r"""__nonzero__(Visuals_Materials_Material_Vector self) -> bool"""
|
2484
|
+
return _VisualsSwig.Visuals_Materials_Material_Vector___nonzero__(self)
|
2485
|
+
|
2486
|
+
def __bool__(self):
|
2487
|
+
r"""__bool__(Visuals_Materials_Material_Vector self) -> bool"""
|
2488
|
+
return _VisualsSwig.Visuals_Materials_Material_Vector___bool__(self)
|
2489
|
+
|
2490
|
+
def __len__(self):
|
2491
|
+
r"""__len__(Visuals_Materials_Material_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::size_type"""
|
2492
|
+
return _VisualsSwig.Visuals_Materials_Material_Vector___len__(self)
|
2493
|
+
|
2494
|
+
def __getslice__(self, i, j):
|
2495
|
+
r"""
|
2496
|
+
__getslice__(Visuals_Materials_Material_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::difference_type i, std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::difference_type j) -> Visuals_Materials_Material_Vector
|
2497
|
+
|
2498
|
+
Parameters
|
2499
|
+
----------
|
2500
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::difference_type
|
2501
|
+
j: std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::difference_type
|
2502
|
+
|
2503
|
+
"""
|
2504
|
+
return _VisualsSwig.Visuals_Materials_Material_Vector___getslice__(self, i, j)
|
2505
|
+
|
2506
|
+
def __setslice__(self, *args):
|
2507
|
+
r"""
|
2508
|
+
__setslice__(Visuals_Materials_Material_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::difference_type i, std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::difference_type j)
|
2509
|
+
|
2510
|
+
Parameters
|
2511
|
+
----------
|
2512
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::difference_type
|
2513
|
+
j: std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::difference_type
|
2514
|
+
|
2515
|
+
__setslice__(Visuals_Materials_Material_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::difference_type i, std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::difference_type j, Visuals_Materials_Material_Vector v)
|
2516
|
+
|
2517
|
+
Parameters
|
2518
|
+
----------
|
2519
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::difference_type
|
2520
|
+
j: std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::difference_type
|
2521
|
+
v: std::vector< std::shared_ptr< openplx::Visuals::Materials::Material >,std::allocator< std::shared_ptr< openplx::Visuals::Materials::Material > > > const &
|
2522
|
+
|
2523
|
+
"""
|
2524
|
+
return _VisualsSwig.Visuals_Materials_Material_Vector___setslice__(self, *args)
|
2525
|
+
|
2526
|
+
def __delslice__(self, i, j):
|
2527
|
+
r"""
|
2528
|
+
__delslice__(Visuals_Materials_Material_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::difference_type i, std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::difference_type j)
|
2529
|
+
|
2530
|
+
Parameters
|
2531
|
+
----------
|
2532
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::difference_type
|
2533
|
+
j: std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::difference_type
|
2534
|
+
|
2535
|
+
"""
|
2536
|
+
return _VisualsSwig.Visuals_Materials_Material_Vector___delslice__(self, i, j)
|
2537
|
+
|
2538
|
+
def __delitem__(self, *args):
|
2539
|
+
r"""
|
2540
|
+
__delitem__(Visuals_Materials_Material_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::difference_type i)
|
2541
|
+
|
2542
|
+
Parameters
|
2543
|
+
----------
|
2544
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::difference_type
|
2545
|
+
|
2546
|
+
__delitem__(Visuals_Materials_Material_Vector self, PySliceObject * slice)
|
2547
|
+
|
2548
|
+
Parameters
|
2549
|
+
----------
|
2550
|
+
slice: PySliceObject *
|
2551
|
+
|
2552
|
+
"""
|
2553
|
+
return _VisualsSwig.Visuals_Materials_Material_Vector___delitem__(self, *args)
|
2554
|
+
|
2555
|
+
def __getitem__(self, *args):
|
2556
|
+
r"""
|
2557
|
+
__getitem__(Visuals_Materials_Material_Vector self, PySliceObject * slice) -> Visuals_Materials_Material_Vector
|
2558
|
+
|
2559
|
+
Parameters
|
2560
|
+
----------
|
2561
|
+
slice: PySliceObject *
|
2562
|
+
|
2563
|
+
__getitem__(Visuals_Materials_Material_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::difference_type i) -> std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::value_type const &
|
2564
|
+
|
2565
|
+
Parameters
|
2566
|
+
----------
|
2567
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::difference_type
|
2568
|
+
|
2569
|
+
"""
|
2570
|
+
return _VisualsSwig.Visuals_Materials_Material_Vector___getitem__(self, *args)
|
2571
|
+
|
2572
|
+
def __setitem__(self, *args):
|
2573
|
+
r"""
|
2574
|
+
__setitem__(Visuals_Materials_Material_Vector self, PySliceObject * slice, Visuals_Materials_Material_Vector v)
|
2575
|
+
|
2576
|
+
Parameters
|
2577
|
+
----------
|
2578
|
+
slice: PySliceObject *
|
2579
|
+
v: std::vector< std::shared_ptr< openplx::Visuals::Materials::Material >,std::allocator< std::shared_ptr< openplx::Visuals::Materials::Material > > > const &
|
2580
|
+
|
2581
|
+
__setitem__(Visuals_Materials_Material_Vector self, PySliceObject * slice)
|
2582
|
+
|
2583
|
+
Parameters
|
2584
|
+
----------
|
2585
|
+
slice: PySliceObject *
|
2586
|
+
|
2587
|
+
__setitem__(Visuals_Materials_Material_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::difference_type i, std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::value_type const & x)
|
2588
|
+
|
2589
|
+
Parameters
|
2590
|
+
----------
|
2591
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::difference_type
|
2592
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::value_type const &
|
2593
|
+
|
2594
|
+
"""
|
2595
|
+
return _VisualsSwig.Visuals_Materials_Material_Vector___setitem__(self, *args)
|
2596
|
+
|
2597
|
+
def pop(self):
|
2598
|
+
r"""pop(Visuals_Materials_Material_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::value_type"""
|
2599
|
+
return _VisualsSwig.Visuals_Materials_Material_Vector_pop(self)
|
2600
|
+
|
2601
|
+
def append(self, x):
|
2602
|
+
r"""
|
2603
|
+
append(Visuals_Materials_Material_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::value_type const & x)
|
2604
|
+
|
2605
|
+
Parameters
|
2606
|
+
----------
|
2607
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::value_type const &
|
2608
|
+
|
2609
|
+
"""
|
2610
|
+
return _VisualsSwig.Visuals_Materials_Material_Vector_append(self, x)
|
2611
|
+
|
2612
|
+
def empty(self):
|
2613
|
+
r"""empty(Visuals_Materials_Material_Vector self) -> bool"""
|
2614
|
+
return _VisualsSwig.Visuals_Materials_Material_Vector_empty(self)
|
2615
|
+
|
2616
|
+
def size(self):
|
2617
|
+
r"""size(Visuals_Materials_Material_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::size_type"""
|
2618
|
+
return _VisualsSwig.Visuals_Materials_Material_Vector_size(self)
|
2619
|
+
|
2620
|
+
def swap(self, v):
|
2621
|
+
r"""
|
2622
|
+
swap(Visuals_Materials_Material_Vector self, Visuals_Materials_Material_Vector v)
|
2623
|
+
|
2624
|
+
Parameters
|
2625
|
+
----------
|
2626
|
+
v: std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > > &
|
2627
|
+
|
2628
|
+
"""
|
2629
|
+
return _VisualsSwig.Visuals_Materials_Material_Vector_swap(self, v)
|
2630
|
+
|
2631
|
+
def begin(self):
|
2632
|
+
r"""begin(Visuals_Materials_Material_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::iterator"""
|
2633
|
+
return _VisualsSwig.Visuals_Materials_Material_Vector_begin(self)
|
2634
|
+
|
2635
|
+
def end(self):
|
2636
|
+
r"""end(Visuals_Materials_Material_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::iterator"""
|
2637
|
+
return _VisualsSwig.Visuals_Materials_Material_Vector_end(self)
|
2638
|
+
|
2639
|
+
def rbegin(self):
|
2640
|
+
r"""rbegin(Visuals_Materials_Material_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::reverse_iterator"""
|
2641
|
+
return _VisualsSwig.Visuals_Materials_Material_Vector_rbegin(self)
|
2642
|
+
|
2643
|
+
def rend(self):
|
2644
|
+
r"""rend(Visuals_Materials_Material_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::reverse_iterator"""
|
2645
|
+
return _VisualsSwig.Visuals_Materials_Material_Vector_rend(self)
|
2646
|
+
|
2647
|
+
def clear(self):
|
2648
|
+
r"""clear(Visuals_Materials_Material_Vector self)"""
|
2649
|
+
return _VisualsSwig.Visuals_Materials_Material_Vector_clear(self)
|
2650
|
+
|
2651
|
+
def get_allocator(self):
|
2652
|
+
r"""get_allocator(Visuals_Materials_Material_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::allocator_type"""
|
2653
|
+
return _VisualsSwig.Visuals_Materials_Material_Vector_get_allocator(self)
|
2654
|
+
|
2655
|
+
def pop_back(self):
|
2656
|
+
r"""pop_back(Visuals_Materials_Material_Vector self)"""
|
2657
|
+
return _VisualsSwig.Visuals_Materials_Material_Vector_pop_back(self)
|
2658
|
+
|
2659
|
+
def erase(self, *args):
|
2660
|
+
r"""
|
2661
|
+
erase(Visuals_Materials_Material_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::iterator pos) -> std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::iterator
|
2662
|
+
|
2663
|
+
Parameters
|
2664
|
+
----------
|
2665
|
+
pos: std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::iterator
|
2666
|
+
|
2667
|
+
erase(Visuals_Materials_Material_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::iterator first, std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::iterator last) -> std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::iterator
|
2668
|
+
|
2669
|
+
Parameters
|
2670
|
+
----------
|
2671
|
+
first: std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::iterator
|
2672
|
+
last: std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::iterator
|
2673
|
+
|
2674
|
+
"""
|
2675
|
+
return _VisualsSwig.Visuals_Materials_Material_Vector_erase(self, *args)
|
2676
|
+
|
2677
|
+
def __init__(self, *args):
|
2678
|
+
r"""
|
2679
|
+
__init__(Visuals_Materials_Material_Vector self) -> Visuals_Materials_Material_Vector
|
2680
|
+
__init__(Visuals_Materials_Material_Vector self, Visuals_Materials_Material_Vector other) -> Visuals_Materials_Material_Vector
|
2681
|
+
|
2682
|
+
Parameters
|
2683
|
+
----------
|
2684
|
+
other: std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > > const &
|
2685
|
+
|
2686
|
+
__init__(Visuals_Materials_Material_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::size_type size) -> Visuals_Materials_Material_Vector
|
2687
|
+
|
2688
|
+
Parameters
|
2689
|
+
----------
|
2690
|
+
size: std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::size_type
|
2691
|
+
|
2692
|
+
__init__(Visuals_Materials_Material_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::size_type size, std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::value_type const & value) -> Visuals_Materials_Material_Vector
|
2693
|
+
|
2694
|
+
Parameters
|
2695
|
+
----------
|
2696
|
+
size: std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::size_type
|
2697
|
+
value: std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::value_type const &
|
2698
|
+
|
2699
|
+
"""
|
2700
|
+
_VisualsSwig.Visuals_Materials_Material_Vector_swiginit(self, _VisualsSwig.new_Visuals_Materials_Material_Vector(*args))
|
2701
|
+
|
2702
|
+
def push_back(self, x):
|
2703
|
+
r"""
|
2704
|
+
push_back(Visuals_Materials_Material_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::value_type const & x)
|
2705
|
+
|
2706
|
+
Parameters
|
2707
|
+
----------
|
2708
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::value_type const &
|
2709
|
+
|
2710
|
+
"""
|
2711
|
+
return _VisualsSwig.Visuals_Materials_Material_Vector_push_back(self, x)
|
2712
|
+
|
2713
|
+
def front(self):
|
2714
|
+
r"""front(Visuals_Materials_Material_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::value_type const &"""
|
2715
|
+
return _VisualsSwig.Visuals_Materials_Material_Vector_front(self)
|
2716
|
+
|
2717
|
+
def back(self):
|
2718
|
+
r"""back(Visuals_Materials_Material_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::value_type const &"""
|
2719
|
+
return _VisualsSwig.Visuals_Materials_Material_Vector_back(self)
|
2720
|
+
|
2721
|
+
def assign(self, n, x):
|
2722
|
+
r"""
|
2723
|
+
assign(Visuals_Materials_Material_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::size_type n, std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::value_type const & x)
|
2724
|
+
|
2725
|
+
Parameters
|
2726
|
+
----------
|
2727
|
+
n: std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::size_type
|
2728
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::value_type const &
|
2729
|
+
|
2730
|
+
"""
|
2731
|
+
return _VisualsSwig.Visuals_Materials_Material_Vector_assign(self, n, x)
|
2732
|
+
|
2733
|
+
def resize(self, *args):
|
2734
|
+
r"""
|
2735
|
+
resize(Visuals_Materials_Material_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::size_type new_size)
|
2736
|
+
|
2737
|
+
Parameters
|
2738
|
+
----------
|
2739
|
+
new_size: std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::size_type
|
2740
|
+
|
2741
|
+
resize(Visuals_Materials_Material_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::size_type new_size, std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::value_type const & x)
|
2742
|
+
|
2743
|
+
Parameters
|
2744
|
+
----------
|
2745
|
+
new_size: std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::size_type
|
2746
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::value_type const &
|
2747
|
+
|
2748
|
+
"""
|
2749
|
+
return _VisualsSwig.Visuals_Materials_Material_Vector_resize(self, *args)
|
2750
|
+
|
2751
|
+
def insert(self, *args):
|
2752
|
+
r"""
|
2753
|
+
insert(Visuals_Materials_Material_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::iterator pos, std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::value_type const & x) -> std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::iterator
|
2754
|
+
|
2755
|
+
Parameters
|
2756
|
+
----------
|
2757
|
+
pos: std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::iterator
|
2758
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::value_type const &
|
2759
|
+
|
2760
|
+
insert(Visuals_Materials_Material_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::iterator pos, std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::size_type n, std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::value_type const & x)
|
2761
|
+
|
2762
|
+
Parameters
|
2763
|
+
----------
|
2764
|
+
pos: std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::iterator
|
2765
|
+
n: std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::size_type
|
2766
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::value_type const &
|
2767
|
+
|
2768
|
+
"""
|
2769
|
+
return _VisualsSwig.Visuals_Materials_Material_Vector_insert(self, *args)
|
2770
|
+
|
2771
|
+
def reserve(self, n):
|
2772
|
+
r"""
|
2773
|
+
reserve(Visuals_Materials_Material_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::size_type n)
|
2774
|
+
|
2775
|
+
Parameters
|
2776
|
+
----------
|
2777
|
+
n: std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::size_type
|
2778
|
+
|
2779
|
+
"""
|
2780
|
+
return _VisualsSwig.Visuals_Materials_Material_Vector_reserve(self, n)
|
2781
|
+
|
2782
|
+
def capacity(self):
|
2783
|
+
r"""capacity(Visuals_Materials_Material_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Materials::Material > >::size_type"""
|
2784
|
+
return _VisualsSwig.Visuals_Materials_Material_Vector_capacity(self)
|
2785
|
+
__swig_destroy__ = _VisualsSwig.delete_Visuals_Materials_Material_Vector
|
2786
|
+
|
2787
|
+
# Register Visuals_Materials_Material_Vector in _VisualsSwig:
|
2788
|
+
_VisualsSwig.Visuals_Materials_Material_Vector_swigregister(Visuals_Materials_Material_Vector)
|
2789
|
+
|
2790
|
+
class Visuals_Materials_TextureMaterial_Vector(object):
|
2791
|
+
r"""Proxy of C++ std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > > class."""
|
2792
|
+
|
2793
|
+
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
2794
|
+
__repr__ = _swig_repr
|
2795
|
+
|
2796
|
+
def iterator(self):
|
2797
|
+
r"""iterator(Visuals_Materials_TextureMaterial_Vector self) -> SwigPyIterator"""
|
2798
|
+
return _VisualsSwig.Visuals_Materials_TextureMaterial_Vector_iterator(self)
|
2799
|
+
def __iter__(self):
|
2800
|
+
return self.iterator()
|
2801
|
+
|
2802
|
+
def __nonzero__(self):
|
2803
|
+
r"""__nonzero__(Visuals_Materials_TextureMaterial_Vector self) -> bool"""
|
2804
|
+
return _VisualsSwig.Visuals_Materials_TextureMaterial_Vector___nonzero__(self)
|
2805
|
+
|
2806
|
+
def __bool__(self):
|
2807
|
+
r"""__bool__(Visuals_Materials_TextureMaterial_Vector self) -> bool"""
|
2808
|
+
return _VisualsSwig.Visuals_Materials_TextureMaterial_Vector___bool__(self)
|
2809
|
+
|
2810
|
+
def __len__(self):
|
2811
|
+
r"""__len__(Visuals_Materials_TextureMaterial_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::size_type"""
|
2812
|
+
return _VisualsSwig.Visuals_Materials_TextureMaterial_Vector___len__(self)
|
2813
|
+
|
2814
|
+
def __getslice__(self, i, j):
|
2815
|
+
r"""
|
2816
|
+
__getslice__(Visuals_Materials_TextureMaterial_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::difference_type i, std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::difference_type j) -> Visuals_Materials_TextureMaterial_Vector
|
2817
|
+
|
2818
|
+
Parameters
|
2819
|
+
----------
|
2820
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::difference_type
|
2821
|
+
j: std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::difference_type
|
2822
|
+
|
2823
|
+
"""
|
2824
|
+
return _VisualsSwig.Visuals_Materials_TextureMaterial_Vector___getslice__(self, i, j)
|
2825
|
+
|
2826
|
+
def __setslice__(self, *args):
|
2827
|
+
r"""
|
2828
|
+
__setslice__(Visuals_Materials_TextureMaterial_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::difference_type i, std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::difference_type j)
|
2829
|
+
|
2830
|
+
Parameters
|
2831
|
+
----------
|
2832
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::difference_type
|
2833
|
+
j: std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::difference_type
|
2834
|
+
|
2835
|
+
__setslice__(Visuals_Materials_TextureMaterial_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::difference_type i, std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::difference_type j, Visuals_Materials_TextureMaterial_Vector v)
|
2836
|
+
|
2837
|
+
Parameters
|
2838
|
+
----------
|
2839
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::difference_type
|
2840
|
+
j: std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::difference_type
|
2841
|
+
v: std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial >,std::allocator< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > > > const &
|
2842
|
+
|
2843
|
+
"""
|
2844
|
+
return _VisualsSwig.Visuals_Materials_TextureMaterial_Vector___setslice__(self, *args)
|
2845
|
+
|
2846
|
+
def __delslice__(self, i, j):
|
2847
|
+
r"""
|
2848
|
+
__delslice__(Visuals_Materials_TextureMaterial_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::difference_type i, std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::difference_type j)
|
2849
|
+
|
2850
|
+
Parameters
|
2851
|
+
----------
|
2852
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::difference_type
|
2853
|
+
j: std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::difference_type
|
2854
|
+
|
2855
|
+
"""
|
2856
|
+
return _VisualsSwig.Visuals_Materials_TextureMaterial_Vector___delslice__(self, i, j)
|
2857
|
+
|
2858
|
+
def __delitem__(self, *args):
|
2859
|
+
r"""
|
2860
|
+
__delitem__(Visuals_Materials_TextureMaterial_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::difference_type i)
|
2861
|
+
|
2862
|
+
Parameters
|
2863
|
+
----------
|
2864
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::difference_type
|
2865
|
+
|
2866
|
+
__delitem__(Visuals_Materials_TextureMaterial_Vector self, PySliceObject * slice)
|
2867
|
+
|
2868
|
+
Parameters
|
2869
|
+
----------
|
2870
|
+
slice: PySliceObject *
|
2871
|
+
|
2872
|
+
"""
|
2873
|
+
return _VisualsSwig.Visuals_Materials_TextureMaterial_Vector___delitem__(self, *args)
|
2874
|
+
|
2875
|
+
def __getitem__(self, *args):
|
2876
|
+
r"""
|
2877
|
+
__getitem__(Visuals_Materials_TextureMaterial_Vector self, PySliceObject * slice) -> Visuals_Materials_TextureMaterial_Vector
|
2878
|
+
|
2879
|
+
Parameters
|
2880
|
+
----------
|
2881
|
+
slice: PySliceObject *
|
2882
|
+
|
2883
|
+
__getitem__(Visuals_Materials_TextureMaterial_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::difference_type i) -> std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::value_type const &
|
2884
|
+
|
2885
|
+
Parameters
|
2886
|
+
----------
|
2887
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::difference_type
|
2888
|
+
|
2889
|
+
"""
|
2890
|
+
return _VisualsSwig.Visuals_Materials_TextureMaterial_Vector___getitem__(self, *args)
|
2891
|
+
|
2892
|
+
def __setitem__(self, *args):
|
2893
|
+
r"""
|
2894
|
+
__setitem__(Visuals_Materials_TextureMaterial_Vector self, PySliceObject * slice, Visuals_Materials_TextureMaterial_Vector v)
|
2895
|
+
|
2896
|
+
Parameters
|
2897
|
+
----------
|
2898
|
+
slice: PySliceObject *
|
2899
|
+
v: std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial >,std::allocator< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > > > const &
|
2900
|
+
|
2901
|
+
__setitem__(Visuals_Materials_TextureMaterial_Vector self, PySliceObject * slice)
|
2902
|
+
|
2903
|
+
Parameters
|
2904
|
+
----------
|
2905
|
+
slice: PySliceObject *
|
2906
|
+
|
2907
|
+
__setitem__(Visuals_Materials_TextureMaterial_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::difference_type i, std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::value_type const & x)
|
2908
|
+
|
2909
|
+
Parameters
|
2910
|
+
----------
|
2911
|
+
i: std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::difference_type
|
2912
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::value_type const &
|
2913
|
+
|
2914
|
+
"""
|
2915
|
+
return _VisualsSwig.Visuals_Materials_TextureMaterial_Vector___setitem__(self, *args)
|
2916
|
+
|
2917
|
+
def pop(self):
|
2918
|
+
r"""pop(Visuals_Materials_TextureMaterial_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::value_type"""
|
2919
|
+
return _VisualsSwig.Visuals_Materials_TextureMaterial_Vector_pop(self)
|
2920
|
+
|
2921
|
+
def append(self, x):
|
2922
|
+
r"""
|
2923
|
+
append(Visuals_Materials_TextureMaterial_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::value_type const & x)
|
2924
|
+
|
2925
|
+
Parameters
|
2926
|
+
----------
|
2927
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::value_type const &
|
2928
|
+
|
2929
|
+
"""
|
2930
|
+
return _VisualsSwig.Visuals_Materials_TextureMaterial_Vector_append(self, x)
|
2931
|
+
|
2932
|
+
def empty(self):
|
2933
|
+
r"""empty(Visuals_Materials_TextureMaterial_Vector self) -> bool"""
|
2934
|
+
return _VisualsSwig.Visuals_Materials_TextureMaterial_Vector_empty(self)
|
2935
|
+
|
2936
|
+
def size(self):
|
2937
|
+
r"""size(Visuals_Materials_TextureMaterial_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::size_type"""
|
2938
|
+
return _VisualsSwig.Visuals_Materials_TextureMaterial_Vector_size(self)
|
2939
|
+
|
2940
|
+
def swap(self, v):
|
2941
|
+
r"""
|
2942
|
+
swap(Visuals_Materials_TextureMaterial_Vector self, Visuals_Materials_TextureMaterial_Vector v)
|
2943
|
+
|
2944
|
+
Parameters
|
2945
|
+
----------
|
2946
|
+
v: std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > > &
|
2947
|
+
|
2948
|
+
"""
|
2949
|
+
return _VisualsSwig.Visuals_Materials_TextureMaterial_Vector_swap(self, v)
|
2950
|
+
|
2951
|
+
def begin(self):
|
2952
|
+
r"""begin(Visuals_Materials_TextureMaterial_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::iterator"""
|
2953
|
+
return _VisualsSwig.Visuals_Materials_TextureMaterial_Vector_begin(self)
|
2954
|
+
|
2955
|
+
def end(self):
|
2956
|
+
r"""end(Visuals_Materials_TextureMaterial_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::iterator"""
|
2957
|
+
return _VisualsSwig.Visuals_Materials_TextureMaterial_Vector_end(self)
|
2958
|
+
|
2959
|
+
def rbegin(self):
|
2960
|
+
r"""rbegin(Visuals_Materials_TextureMaterial_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::reverse_iterator"""
|
2961
|
+
return _VisualsSwig.Visuals_Materials_TextureMaterial_Vector_rbegin(self)
|
2962
|
+
|
2963
|
+
def rend(self):
|
2964
|
+
r"""rend(Visuals_Materials_TextureMaterial_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::reverse_iterator"""
|
2965
|
+
return _VisualsSwig.Visuals_Materials_TextureMaterial_Vector_rend(self)
|
2966
|
+
|
2967
|
+
def clear(self):
|
2968
|
+
r"""clear(Visuals_Materials_TextureMaterial_Vector self)"""
|
2969
|
+
return _VisualsSwig.Visuals_Materials_TextureMaterial_Vector_clear(self)
|
2970
|
+
|
2971
|
+
def get_allocator(self):
|
2972
|
+
r"""get_allocator(Visuals_Materials_TextureMaterial_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::allocator_type"""
|
2973
|
+
return _VisualsSwig.Visuals_Materials_TextureMaterial_Vector_get_allocator(self)
|
2974
|
+
|
2975
|
+
def pop_back(self):
|
2976
|
+
r"""pop_back(Visuals_Materials_TextureMaterial_Vector self)"""
|
2977
|
+
return _VisualsSwig.Visuals_Materials_TextureMaterial_Vector_pop_back(self)
|
2978
|
+
|
2979
|
+
def erase(self, *args):
|
2980
|
+
r"""
|
2981
|
+
erase(Visuals_Materials_TextureMaterial_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::iterator pos) -> std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::iterator
|
2982
|
+
|
2983
|
+
Parameters
|
2984
|
+
----------
|
2985
|
+
pos: std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::iterator
|
2986
|
+
|
2987
|
+
erase(Visuals_Materials_TextureMaterial_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::iterator first, std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::iterator last) -> std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::iterator
|
2988
|
+
|
2989
|
+
Parameters
|
2990
|
+
----------
|
2991
|
+
first: std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::iterator
|
2992
|
+
last: std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::iterator
|
2993
|
+
|
2994
|
+
"""
|
2995
|
+
return _VisualsSwig.Visuals_Materials_TextureMaterial_Vector_erase(self, *args)
|
2996
|
+
|
2997
|
+
def __init__(self, *args):
|
2998
|
+
r"""
|
2999
|
+
__init__(Visuals_Materials_TextureMaterial_Vector self) -> Visuals_Materials_TextureMaterial_Vector
|
3000
|
+
__init__(Visuals_Materials_TextureMaterial_Vector self, Visuals_Materials_TextureMaterial_Vector other) -> Visuals_Materials_TextureMaterial_Vector
|
3001
|
+
|
3002
|
+
Parameters
|
3003
|
+
----------
|
3004
|
+
other: std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > > const &
|
3005
|
+
|
3006
|
+
__init__(Visuals_Materials_TextureMaterial_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::size_type size) -> Visuals_Materials_TextureMaterial_Vector
|
3007
|
+
|
3008
|
+
Parameters
|
3009
|
+
----------
|
3010
|
+
size: std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::size_type
|
3011
|
+
|
3012
|
+
__init__(Visuals_Materials_TextureMaterial_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::size_type size, std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::value_type const & value) -> Visuals_Materials_TextureMaterial_Vector
|
3013
|
+
|
3014
|
+
Parameters
|
3015
|
+
----------
|
3016
|
+
size: std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::size_type
|
3017
|
+
value: std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::value_type const &
|
3018
|
+
|
3019
|
+
"""
|
3020
|
+
_VisualsSwig.Visuals_Materials_TextureMaterial_Vector_swiginit(self, _VisualsSwig.new_Visuals_Materials_TextureMaterial_Vector(*args))
|
3021
|
+
|
3022
|
+
def push_back(self, x):
|
3023
|
+
r"""
|
3024
|
+
push_back(Visuals_Materials_TextureMaterial_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::value_type const & x)
|
3025
|
+
|
3026
|
+
Parameters
|
3027
|
+
----------
|
3028
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::value_type const &
|
3029
|
+
|
3030
|
+
"""
|
3031
|
+
return _VisualsSwig.Visuals_Materials_TextureMaterial_Vector_push_back(self, x)
|
3032
|
+
|
3033
|
+
def front(self):
|
3034
|
+
r"""front(Visuals_Materials_TextureMaterial_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::value_type const &"""
|
3035
|
+
return _VisualsSwig.Visuals_Materials_TextureMaterial_Vector_front(self)
|
3036
|
+
|
3037
|
+
def back(self):
|
3038
|
+
r"""back(Visuals_Materials_TextureMaterial_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::value_type const &"""
|
3039
|
+
return _VisualsSwig.Visuals_Materials_TextureMaterial_Vector_back(self)
|
3040
|
+
|
3041
|
+
def assign(self, n, x):
|
3042
|
+
r"""
|
3043
|
+
assign(Visuals_Materials_TextureMaterial_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::size_type n, std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::value_type const & x)
|
3044
|
+
|
3045
|
+
Parameters
|
3046
|
+
----------
|
3047
|
+
n: std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::size_type
|
3048
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::value_type const &
|
3049
|
+
|
3050
|
+
"""
|
3051
|
+
return _VisualsSwig.Visuals_Materials_TextureMaterial_Vector_assign(self, n, x)
|
3052
|
+
|
3053
|
+
def resize(self, *args):
|
3054
|
+
r"""
|
3055
|
+
resize(Visuals_Materials_TextureMaterial_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::size_type new_size)
|
3056
|
+
|
3057
|
+
Parameters
|
3058
|
+
----------
|
3059
|
+
new_size: std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::size_type
|
3060
|
+
|
3061
|
+
resize(Visuals_Materials_TextureMaterial_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::size_type new_size, std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::value_type const & x)
|
3062
|
+
|
3063
|
+
Parameters
|
3064
|
+
----------
|
3065
|
+
new_size: std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::size_type
|
3066
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::value_type const &
|
3067
|
+
|
3068
|
+
"""
|
3069
|
+
return _VisualsSwig.Visuals_Materials_TextureMaterial_Vector_resize(self, *args)
|
3070
|
+
|
3071
|
+
def insert(self, *args):
|
3072
|
+
r"""
|
3073
|
+
insert(Visuals_Materials_TextureMaterial_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::iterator pos, std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::value_type const & x) -> std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::iterator
|
3074
|
+
|
3075
|
+
Parameters
|
3076
|
+
----------
|
3077
|
+
pos: std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::iterator
|
3078
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::value_type const &
|
3079
|
+
|
3080
|
+
insert(Visuals_Materials_TextureMaterial_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::iterator pos, std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::size_type n, std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::value_type const & x)
|
3081
|
+
|
3082
|
+
Parameters
|
3083
|
+
----------
|
3084
|
+
pos: std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::iterator
|
3085
|
+
n: std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::size_type
|
3086
|
+
x: std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::value_type const &
|
3087
|
+
|
3088
|
+
"""
|
3089
|
+
return _VisualsSwig.Visuals_Materials_TextureMaterial_Vector_insert(self, *args)
|
3090
|
+
|
3091
|
+
def reserve(self, n):
|
3092
|
+
r"""
|
3093
|
+
reserve(Visuals_Materials_TextureMaterial_Vector self, std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::size_type n)
|
3094
|
+
|
3095
|
+
Parameters
|
3096
|
+
----------
|
3097
|
+
n: std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::size_type
|
3098
|
+
|
3099
|
+
"""
|
3100
|
+
return _VisualsSwig.Visuals_Materials_TextureMaterial_Vector_reserve(self, n)
|
3101
|
+
|
3102
|
+
def capacity(self):
|
3103
|
+
r"""capacity(Visuals_Materials_TextureMaterial_Vector self) -> std::vector< std::shared_ptr< openplx::Visuals::Materials::TextureMaterial > >::size_type"""
|
3104
|
+
return _VisualsSwig.Visuals_Materials_TextureMaterial_Vector_capacity(self)
|
3105
|
+
__swig_destroy__ = _VisualsSwig.delete_Visuals_Materials_TextureMaterial_Vector
|
3106
|
+
|
3107
|
+
# Register Visuals_Materials_TextureMaterial_Vector in _VisualsSwig:
|
3108
|
+
_VisualsSwig.Visuals_Materials_TextureMaterial_Vector_swigregister(Visuals_Materials_TextureMaterial_Vector)
|
3109
|
+
|
3110
|
+
class Geometries_Geometry(openplx.Core.Object):
|
3111
|
+
r"""Proxy of C++ openplx::Visuals::Geometries::Geometry class."""
|
3112
|
+
|
3113
|
+
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
3114
|
+
__repr__ = _swig_repr
|
3115
|
+
|
3116
|
+
def __init__(self):
|
3117
|
+
r"""__init__(Geometries_Geometry self) -> Geometries_Geometry"""
|
3118
|
+
_VisualsSwig.Geometries_Geometry_swiginit(self, _VisualsSwig.new_Geometries_Geometry())
|
3119
|
+
|
3120
|
+
def local_transform(self):
|
3121
|
+
r"""local_transform(Geometries_Geometry self) -> std::shared_ptr< openplx::Math::AffineTransform >"""
|
3122
|
+
return _VisualsSwig.Geometries_Geometry_local_transform(self)
|
3123
|
+
|
3124
|
+
def material(self):
|
3125
|
+
r"""material(Geometries_Geometry self) -> std::shared_ptr< openplx::Visuals::Materials::Material >"""
|
3126
|
+
return _VisualsSwig.Geometries_Geometry_material(self)
|
3127
|
+
|
3128
|
+
def setDynamic(self, key, value):
|
3129
|
+
r"""
|
3130
|
+
setDynamic(Geometries_Geometry self, std::string const & key, Any value)
|
3131
|
+
|
3132
|
+
Parameters
|
3133
|
+
----------
|
3134
|
+
key: std::string const &
|
3135
|
+
value: openplx::Core::Any &&
|
3136
|
+
|
3137
|
+
"""
|
3138
|
+
return _VisualsSwig.Geometries_Geometry_setDynamic(self, key, value)
|
3139
|
+
|
3140
|
+
def getDynamic(self, key):
|
3141
|
+
r"""
|
3142
|
+
getDynamic(Geometries_Geometry self, std::string const & key) -> Any
|
3143
|
+
|
3144
|
+
Parameters
|
3145
|
+
----------
|
3146
|
+
key: std::string const &
|
3147
|
+
|
3148
|
+
"""
|
3149
|
+
return _VisualsSwig.Geometries_Geometry_getDynamic(self, key)
|
3150
|
+
|
3151
|
+
def callDynamic(self, key, args):
|
3152
|
+
r"""
|
3153
|
+
callDynamic(Geometries_Geometry self, std::string const & key, AnyVector args) -> Any
|
3154
|
+
|
3155
|
+
Parameters
|
3156
|
+
----------
|
3157
|
+
key: std::string const &
|
3158
|
+
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
3159
|
+
|
3160
|
+
"""
|
3161
|
+
return _VisualsSwig.Geometries_Geometry_callDynamic(self, key, args)
|
3162
|
+
|
3163
|
+
def extractObjectFieldsTo(self, output):
|
3164
|
+
r"""
|
3165
|
+
extractObjectFieldsTo(Geometries_Geometry self, ObjectVector output)
|
3166
|
+
|
3167
|
+
Parameters
|
3168
|
+
----------
|
3169
|
+
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
3170
|
+
|
3171
|
+
"""
|
3172
|
+
return _VisualsSwig.Geometries_Geometry_extractObjectFieldsTo(self, output)
|
3173
|
+
|
3174
|
+
def extractEntriesTo(self, output):
|
3175
|
+
r"""
|
3176
|
+
extractEntriesTo(Geometries_Geometry self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
3177
|
+
|
3178
|
+
Parameters
|
3179
|
+
----------
|
3180
|
+
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
3181
|
+
|
3182
|
+
"""
|
3183
|
+
return _VisualsSwig.Geometries_Geometry_extractEntriesTo(self, output)
|
3184
|
+
|
3185
|
+
def triggerOnInit(self, context):
|
3186
|
+
r"""
|
3187
|
+
triggerOnInit(Geometries_Geometry self, openplx::RuntimeContext const & context)
|
3188
|
+
|
3189
|
+
Parameters
|
3190
|
+
----------
|
3191
|
+
context: openplx::RuntimeContext const &
|
3192
|
+
|
3193
|
+
"""
|
3194
|
+
return _VisualsSwig.Geometries_Geometry_triggerOnInit(self, context)
|
3195
|
+
__swig_destroy__ = _VisualsSwig.delete_Geometries_Geometry
|
3196
|
+
|
3197
|
+
# Register Geometries_Geometry in _VisualsSwig:
|
3198
|
+
_VisualsSwig.Geometries_Geometry_swigregister(Geometries_Geometry)
|
3199
|
+
|
3200
|
+
class Geometries_Box(Geometries_Geometry):
|
3201
|
+
r"""Proxy of C++ openplx::Visuals::Geometries::Box class."""
|
3202
|
+
|
3203
|
+
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
3204
|
+
__repr__ = _swig_repr
|
3205
|
+
|
3206
|
+
def __init__(self):
|
3207
|
+
r"""__init__(Geometries_Box self) -> Geometries_Box"""
|
3208
|
+
_VisualsSwig.Geometries_Box_swiginit(self, _VisualsSwig.new_Geometries_Box())
|
3209
|
+
|
3210
|
+
def size(self):
|
3211
|
+
r"""size(Geometries_Box self) -> std::shared_ptr< openplx::Math::Vec3 >"""
|
3212
|
+
return _VisualsSwig.Geometries_Box_size(self)
|
3213
|
+
|
3214
|
+
def setDynamic(self, key, value):
|
3215
|
+
r"""
|
3216
|
+
setDynamic(Geometries_Box self, std::string const & key, Any value)
|
3217
|
+
|
3218
|
+
Parameters
|
3219
|
+
----------
|
3220
|
+
key: std::string const &
|
3221
|
+
value: openplx::Core::Any &&
|
3222
|
+
|
3223
|
+
"""
|
3224
|
+
return _VisualsSwig.Geometries_Box_setDynamic(self, key, value)
|
3225
|
+
|
3226
|
+
def getDynamic(self, key):
|
3227
|
+
r"""
|
3228
|
+
getDynamic(Geometries_Box self, std::string const & key) -> Any
|
3229
|
+
|
3230
|
+
Parameters
|
3231
|
+
----------
|
3232
|
+
key: std::string const &
|
3233
|
+
|
3234
|
+
"""
|
3235
|
+
return _VisualsSwig.Geometries_Box_getDynamic(self, key)
|
3236
|
+
|
3237
|
+
def callDynamic(self, key, args):
|
3238
|
+
r"""
|
3239
|
+
callDynamic(Geometries_Box self, std::string const & key, AnyVector args) -> Any
|
3240
|
+
|
3241
|
+
Parameters
|
3242
|
+
----------
|
3243
|
+
key: std::string const &
|
3244
|
+
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
3245
|
+
|
3246
|
+
"""
|
3247
|
+
return _VisualsSwig.Geometries_Box_callDynamic(self, key, args)
|
3248
|
+
|
3249
|
+
def extractObjectFieldsTo(self, output):
|
3250
|
+
r"""
|
3251
|
+
extractObjectFieldsTo(Geometries_Box self, ObjectVector output)
|
3252
|
+
|
3253
|
+
Parameters
|
3254
|
+
----------
|
3255
|
+
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
3256
|
+
|
3257
|
+
"""
|
3258
|
+
return _VisualsSwig.Geometries_Box_extractObjectFieldsTo(self, output)
|
3259
|
+
|
3260
|
+
def extractEntriesTo(self, output):
|
3261
|
+
r"""
|
3262
|
+
extractEntriesTo(Geometries_Box self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
3263
|
+
|
3264
|
+
Parameters
|
3265
|
+
----------
|
3266
|
+
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
3267
|
+
|
3268
|
+
"""
|
3269
|
+
return _VisualsSwig.Geometries_Box_extractEntriesTo(self, output)
|
3270
|
+
|
3271
|
+
def triggerOnInit(self, context):
|
3272
|
+
r"""
|
3273
|
+
triggerOnInit(Geometries_Box self, openplx::RuntimeContext const & context)
|
3274
|
+
|
3275
|
+
Parameters
|
3276
|
+
----------
|
3277
|
+
context: openplx::RuntimeContext const &
|
3278
|
+
|
3279
|
+
"""
|
3280
|
+
return _VisualsSwig.Geometries_Box_triggerOnInit(self, context)
|
3281
|
+
__swig_destroy__ = _VisualsSwig.delete_Geometries_Box
|
3282
|
+
|
3283
|
+
# Register Geometries_Box in _VisualsSwig:
|
3284
|
+
_VisualsSwig.Geometries_Box_swigregister(Geometries_Box)
|
3285
|
+
|
3286
|
+
class Geometries_TriMeshGeometry(Geometries_Geometry):
|
3287
|
+
r"""Proxy of C++ openplx::Visuals::Geometries::TriMeshGeometry class."""
|
3288
|
+
|
3289
|
+
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
3290
|
+
__repr__ = _swig_repr
|
3291
|
+
|
3292
|
+
def __init__(self):
|
3293
|
+
r"""__init__(Geometries_TriMeshGeometry self) -> Geometries_TriMeshGeometry"""
|
3294
|
+
_VisualsSwig.Geometries_TriMeshGeometry_swiginit(self, _VisualsSwig.new_Geometries_TriMeshGeometry())
|
3295
|
+
|
3296
|
+
def setDynamic(self, key, value):
|
3297
|
+
r"""
|
3298
|
+
setDynamic(Geometries_TriMeshGeometry self, std::string const & key, Any value)
|
3299
|
+
|
3300
|
+
Parameters
|
3301
|
+
----------
|
3302
|
+
key: std::string const &
|
3303
|
+
value: openplx::Core::Any &&
|
3304
|
+
|
3305
|
+
"""
|
3306
|
+
return _VisualsSwig.Geometries_TriMeshGeometry_setDynamic(self, key, value)
|
3307
|
+
|
3308
|
+
def getDynamic(self, key):
|
3309
|
+
r"""
|
3310
|
+
getDynamic(Geometries_TriMeshGeometry self, std::string const & key) -> Any
|
3311
|
+
|
3312
|
+
Parameters
|
3313
|
+
----------
|
3314
|
+
key: std::string const &
|
3315
|
+
|
3316
|
+
"""
|
3317
|
+
return _VisualsSwig.Geometries_TriMeshGeometry_getDynamic(self, key)
|
3318
|
+
|
3319
|
+
def callDynamic(self, key, args):
|
3320
|
+
r"""
|
3321
|
+
callDynamic(Geometries_TriMeshGeometry self, std::string const & key, AnyVector args) -> Any
|
3322
|
+
|
3323
|
+
Parameters
|
3324
|
+
----------
|
3325
|
+
key: std::string const &
|
3326
|
+
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
3327
|
+
|
3328
|
+
"""
|
3329
|
+
return _VisualsSwig.Geometries_TriMeshGeometry_callDynamic(self, key, args)
|
3330
|
+
|
3331
|
+
def extractObjectFieldsTo(self, output):
|
3332
|
+
r"""
|
3333
|
+
extractObjectFieldsTo(Geometries_TriMeshGeometry self, ObjectVector output)
|
3334
|
+
|
3335
|
+
Parameters
|
3336
|
+
----------
|
3337
|
+
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
3338
|
+
|
3339
|
+
"""
|
3340
|
+
return _VisualsSwig.Geometries_TriMeshGeometry_extractObjectFieldsTo(self, output)
|
3341
|
+
|
3342
|
+
def extractEntriesTo(self, output):
|
3343
|
+
r"""
|
3344
|
+
extractEntriesTo(Geometries_TriMeshGeometry self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
3345
|
+
|
3346
|
+
Parameters
|
3347
|
+
----------
|
3348
|
+
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
3349
|
+
|
3350
|
+
"""
|
3351
|
+
return _VisualsSwig.Geometries_TriMeshGeometry_extractEntriesTo(self, output)
|
3352
|
+
|
3353
|
+
def triggerOnInit(self, context):
|
3354
|
+
r"""
|
3355
|
+
triggerOnInit(Geometries_TriMeshGeometry self, openplx::RuntimeContext const & context)
|
3356
|
+
|
3357
|
+
Parameters
|
3358
|
+
----------
|
3359
|
+
context: openplx::RuntimeContext const &
|
3360
|
+
|
3361
|
+
"""
|
3362
|
+
return _VisualsSwig.Geometries_TriMeshGeometry_triggerOnInit(self, context)
|
3363
|
+
__swig_destroy__ = _VisualsSwig.delete_Geometries_TriMeshGeometry
|
3364
|
+
|
3365
|
+
# Register Geometries_TriMeshGeometry in _VisualsSwig:
|
3366
|
+
_VisualsSwig.Geometries_TriMeshGeometry_swigregister(Geometries_TriMeshGeometry)
|
3367
|
+
|
3368
|
+
class Geometries_ConvexMesh(Geometries_TriMeshGeometry):
|
3369
|
+
r"""Proxy of C++ openplx::Visuals::Geometries::ConvexMesh class."""
|
3370
|
+
|
3371
|
+
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
3372
|
+
__repr__ = _swig_repr
|
3373
|
+
|
3374
|
+
def __init__(self):
|
3375
|
+
r"""__init__(Geometries_ConvexMesh self) -> Geometries_ConvexMesh"""
|
3376
|
+
_VisualsSwig.Geometries_ConvexMesh_swiginit(self, _VisualsSwig.new_Geometries_ConvexMesh())
|
3377
|
+
|
3378
|
+
def vertices(self):
|
3379
|
+
r"""vertices(Geometries_ConvexMesh self) -> Math_Vec3_Vector"""
|
3380
|
+
return _VisualsSwig.Geometries_ConvexMesh_vertices(self)
|
3381
|
+
|
3382
|
+
def setDynamic(self, key, value):
|
3383
|
+
r"""
|
3384
|
+
setDynamic(Geometries_ConvexMesh self, std::string const & key, Any value)
|
3385
|
+
|
3386
|
+
Parameters
|
3387
|
+
----------
|
3388
|
+
key: std::string const &
|
3389
|
+
value: openplx::Core::Any &&
|
3390
|
+
|
3391
|
+
"""
|
3392
|
+
return _VisualsSwig.Geometries_ConvexMesh_setDynamic(self, key, value)
|
3393
|
+
|
3394
|
+
def getDynamic(self, key):
|
3395
|
+
r"""
|
3396
|
+
getDynamic(Geometries_ConvexMesh self, std::string const & key) -> Any
|
3397
|
+
|
3398
|
+
Parameters
|
3399
|
+
----------
|
3400
|
+
key: std::string const &
|
3401
|
+
|
3402
|
+
"""
|
3403
|
+
return _VisualsSwig.Geometries_ConvexMesh_getDynamic(self, key)
|
3404
|
+
|
3405
|
+
def callDynamic(self, key, args):
|
3406
|
+
r"""
|
3407
|
+
callDynamic(Geometries_ConvexMesh self, std::string const & key, AnyVector args) -> Any
|
3408
|
+
|
3409
|
+
Parameters
|
3410
|
+
----------
|
3411
|
+
key: std::string const &
|
3412
|
+
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
3413
|
+
|
3414
|
+
"""
|
3415
|
+
return _VisualsSwig.Geometries_ConvexMesh_callDynamic(self, key, args)
|
3416
|
+
|
3417
|
+
def extractObjectFieldsTo(self, output):
|
3418
|
+
r"""
|
3419
|
+
extractObjectFieldsTo(Geometries_ConvexMesh self, ObjectVector output)
|
3420
|
+
|
3421
|
+
Parameters
|
3422
|
+
----------
|
3423
|
+
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
3424
|
+
|
3425
|
+
"""
|
3426
|
+
return _VisualsSwig.Geometries_ConvexMesh_extractObjectFieldsTo(self, output)
|
3427
|
+
|
3428
|
+
def extractEntriesTo(self, output):
|
3429
|
+
r"""
|
3430
|
+
extractEntriesTo(Geometries_ConvexMesh self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
3431
|
+
|
3432
|
+
Parameters
|
3433
|
+
----------
|
3434
|
+
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
3435
|
+
|
3436
|
+
"""
|
3437
|
+
return _VisualsSwig.Geometries_ConvexMesh_extractEntriesTo(self, output)
|
3438
|
+
|
3439
|
+
def triggerOnInit(self, context):
|
3440
|
+
r"""
|
3441
|
+
triggerOnInit(Geometries_ConvexMesh self, openplx::RuntimeContext const & context)
|
3442
|
+
|
3443
|
+
Parameters
|
3444
|
+
----------
|
3445
|
+
context: openplx::RuntimeContext const &
|
3446
|
+
|
3447
|
+
"""
|
3448
|
+
return _VisualsSwig.Geometries_ConvexMesh_triggerOnInit(self, context)
|
3449
|
+
__swig_destroy__ = _VisualsSwig.delete_Geometries_ConvexMesh
|
3450
|
+
|
3451
|
+
# Register Geometries_ConvexMesh in _VisualsSwig:
|
3452
|
+
_VisualsSwig.Geometries_ConvexMesh_swigregister(Geometries_ConvexMesh)
|
3453
|
+
|
3454
|
+
class Geometries_Cylinder(Geometries_Geometry):
|
3455
|
+
r"""Proxy of C++ openplx::Visuals::Geometries::Cylinder class."""
|
3456
|
+
|
3457
|
+
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
3458
|
+
__repr__ = _swig_repr
|
3459
|
+
|
3460
|
+
def __init__(self):
|
3461
|
+
r"""__init__(Geometries_Cylinder self) -> Geometries_Cylinder"""
|
3462
|
+
_VisualsSwig.Geometries_Cylinder_swiginit(self, _VisualsSwig.new_Geometries_Cylinder())
|
3463
|
+
|
3464
|
+
def radius(self):
|
3465
|
+
r"""radius(Geometries_Cylinder self) -> double"""
|
3466
|
+
return _VisualsSwig.Geometries_Cylinder_radius(self)
|
3467
|
+
|
3468
|
+
def height(self):
|
3469
|
+
r"""height(Geometries_Cylinder self) -> double"""
|
3470
|
+
return _VisualsSwig.Geometries_Cylinder_height(self)
|
3471
|
+
|
3472
|
+
def setDynamic(self, key, value):
|
3473
|
+
r"""
|
3474
|
+
setDynamic(Geometries_Cylinder self, std::string const & key, Any value)
|
3475
|
+
|
3476
|
+
Parameters
|
3477
|
+
----------
|
3478
|
+
key: std::string const &
|
3479
|
+
value: openplx::Core::Any &&
|
3480
|
+
|
3481
|
+
"""
|
3482
|
+
return _VisualsSwig.Geometries_Cylinder_setDynamic(self, key, value)
|
3483
|
+
|
3484
|
+
def getDynamic(self, key):
|
3485
|
+
r"""
|
3486
|
+
getDynamic(Geometries_Cylinder self, std::string const & key) -> Any
|
3487
|
+
|
3488
|
+
Parameters
|
3489
|
+
----------
|
3490
|
+
key: std::string const &
|
3491
|
+
|
3492
|
+
"""
|
3493
|
+
return _VisualsSwig.Geometries_Cylinder_getDynamic(self, key)
|
3494
|
+
|
3495
|
+
def callDynamic(self, key, args):
|
3496
|
+
r"""
|
3497
|
+
callDynamic(Geometries_Cylinder self, std::string const & key, AnyVector args) -> Any
|
3498
|
+
|
3499
|
+
Parameters
|
3500
|
+
----------
|
3501
|
+
key: std::string const &
|
3502
|
+
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
3503
|
+
|
3504
|
+
"""
|
3505
|
+
return _VisualsSwig.Geometries_Cylinder_callDynamic(self, key, args)
|
3506
|
+
|
3507
|
+
def extractObjectFieldsTo(self, output):
|
3508
|
+
r"""
|
3509
|
+
extractObjectFieldsTo(Geometries_Cylinder self, ObjectVector output)
|
3510
|
+
|
3511
|
+
Parameters
|
3512
|
+
----------
|
3513
|
+
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
3514
|
+
|
3515
|
+
"""
|
3516
|
+
return _VisualsSwig.Geometries_Cylinder_extractObjectFieldsTo(self, output)
|
3517
|
+
|
3518
|
+
def extractEntriesTo(self, output):
|
3519
|
+
r"""
|
3520
|
+
extractEntriesTo(Geometries_Cylinder self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
3521
|
+
|
3522
|
+
Parameters
|
3523
|
+
----------
|
3524
|
+
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
3525
|
+
|
3526
|
+
"""
|
3527
|
+
return _VisualsSwig.Geometries_Cylinder_extractEntriesTo(self, output)
|
3528
|
+
|
3529
|
+
def triggerOnInit(self, context):
|
3530
|
+
r"""
|
3531
|
+
triggerOnInit(Geometries_Cylinder self, openplx::RuntimeContext const & context)
|
3532
|
+
|
3533
|
+
Parameters
|
3534
|
+
----------
|
3535
|
+
context: openplx::RuntimeContext const &
|
3536
|
+
|
3537
|
+
"""
|
3538
|
+
return _VisualsSwig.Geometries_Cylinder_triggerOnInit(self, context)
|
3539
|
+
__swig_destroy__ = _VisualsSwig.delete_Geometries_Cylinder
|
3540
|
+
|
3541
|
+
# Register Geometries_Cylinder in _VisualsSwig:
|
3542
|
+
_VisualsSwig.Geometries_Cylinder_swigregister(Geometries_Cylinder)
|
3543
|
+
|
3544
|
+
class Geometries_ExternalTriMeshGeometry(Geometries_TriMeshGeometry):
|
3545
|
+
r"""Proxy of C++ openplx::Visuals::Geometries::ExternalTriMeshGeometry class."""
|
3546
|
+
|
3547
|
+
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
3548
|
+
__repr__ = _swig_repr
|
3549
|
+
|
3550
|
+
def __init__(self):
|
3551
|
+
r"""__init__(Geometries_ExternalTriMeshGeometry self) -> Geometries_ExternalTriMeshGeometry"""
|
3552
|
+
_VisualsSwig.Geometries_ExternalTriMeshGeometry_swiginit(self, _VisualsSwig.new_Geometries_ExternalTriMeshGeometry())
|
3553
|
+
|
3554
|
+
def path(self):
|
3555
|
+
r"""path(Geometries_ExternalTriMeshGeometry self) -> std::string"""
|
3556
|
+
return _VisualsSwig.Geometries_ExternalTriMeshGeometry_path(self)
|
3557
|
+
|
3558
|
+
def scale(self):
|
3559
|
+
r"""scale(Geometries_ExternalTriMeshGeometry self) -> std::shared_ptr< openplx::Math::Vec3 >"""
|
3560
|
+
return _VisualsSwig.Geometries_ExternalTriMeshGeometry_scale(self)
|
3561
|
+
|
3562
|
+
def setDynamic(self, key, value):
|
3563
|
+
r"""
|
3564
|
+
setDynamic(Geometries_ExternalTriMeshGeometry self, std::string const & key, Any value)
|
3565
|
+
|
3566
|
+
Parameters
|
3567
|
+
----------
|
3568
|
+
key: std::string const &
|
3569
|
+
value: openplx::Core::Any &&
|
3570
|
+
|
3571
|
+
"""
|
3572
|
+
return _VisualsSwig.Geometries_ExternalTriMeshGeometry_setDynamic(self, key, value)
|
3573
|
+
|
3574
|
+
def getDynamic(self, key):
|
3575
|
+
r"""
|
3576
|
+
getDynamic(Geometries_ExternalTriMeshGeometry self, std::string const & key) -> Any
|
3577
|
+
|
3578
|
+
Parameters
|
3579
|
+
----------
|
3580
|
+
key: std::string const &
|
3581
|
+
|
3582
|
+
"""
|
3583
|
+
return _VisualsSwig.Geometries_ExternalTriMeshGeometry_getDynamic(self, key)
|
3584
|
+
|
3585
|
+
def callDynamic(self, key, args):
|
3586
|
+
r"""
|
3587
|
+
callDynamic(Geometries_ExternalTriMeshGeometry self, std::string const & key, AnyVector args) -> Any
|
3588
|
+
|
3589
|
+
Parameters
|
3590
|
+
----------
|
3591
|
+
key: std::string const &
|
3592
|
+
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
3593
|
+
|
3594
|
+
"""
|
3595
|
+
return _VisualsSwig.Geometries_ExternalTriMeshGeometry_callDynamic(self, key, args)
|
3596
|
+
|
3597
|
+
def extractObjectFieldsTo(self, output):
|
3598
|
+
r"""
|
3599
|
+
extractObjectFieldsTo(Geometries_ExternalTriMeshGeometry self, ObjectVector output)
|
3600
|
+
|
3601
|
+
Parameters
|
3602
|
+
----------
|
3603
|
+
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
3604
|
+
|
3605
|
+
"""
|
3606
|
+
return _VisualsSwig.Geometries_ExternalTriMeshGeometry_extractObjectFieldsTo(self, output)
|
3607
|
+
|
3608
|
+
def extractEntriesTo(self, output):
|
3609
|
+
r"""
|
3610
|
+
extractEntriesTo(Geometries_ExternalTriMeshGeometry self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
3611
|
+
|
3612
|
+
Parameters
|
3613
|
+
----------
|
3614
|
+
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
3615
|
+
|
3616
|
+
"""
|
3617
|
+
return _VisualsSwig.Geometries_ExternalTriMeshGeometry_extractEntriesTo(self, output)
|
3618
|
+
|
3619
|
+
def triggerOnInit(self, context):
|
3620
|
+
r"""
|
3621
|
+
triggerOnInit(Geometries_ExternalTriMeshGeometry self, openplx::RuntimeContext const & context)
|
3622
|
+
|
3623
|
+
Parameters
|
3624
|
+
----------
|
3625
|
+
context: openplx::RuntimeContext const &
|
3626
|
+
|
3627
|
+
"""
|
3628
|
+
return _VisualsSwig.Geometries_ExternalTriMeshGeometry_triggerOnInit(self, context)
|
3629
|
+
__swig_destroy__ = _VisualsSwig.delete_Geometries_ExternalTriMeshGeometry
|
3630
|
+
|
3631
|
+
# Register Geometries_ExternalTriMeshGeometry in _VisualsSwig:
|
3632
|
+
_VisualsSwig.Geometries_ExternalTriMeshGeometry_swigregister(Geometries_ExternalTriMeshGeometry)
|
3633
|
+
|
3634
|
+
class Geometries_Sphere(Geometries_Geometry):
|
3635
|
+
r"""Proxy of C++ openplx::Visuals::Geometries::Sphere class."""
|
3636
|
+
|
3637
|
+
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
3638
|
+
__repr__ = _swig_repr
|
3639
|
+
|
3640
|
+
def __init__(self):
|
3641
|
+
r"""__init__(Geometries_Sphere self) -> Geometries_Sphere"""
|
3642
|
+
_VisualsSwig.Geometries_Sphere_swiginit(self, _VisualsSwig.new_Geometries_Sphere())
|
3643
|
+
|
3644
|
+
def radius(self):
|
3645
|
+
r"""radius(Geometries_Sphere self) -> double"""
|
3646
|
+
return _VisualsSwig.Geometries_Sphere_radius(self)
|
3647
|
+
|
3648
|
+
def setDynamic(self, key, value):
|
3649
|
+
r"""
|
3650
|
+
setDynamic(Geometries_Sphere self, std::string const & key, Any value)
|
3651
|
+
|
3652
|
+
Parameters
|
3653
|
+
----------
|
3654
|
+
key: std::string const &
|
3655
|
+
value: openplx::Core::Any &&
|
3656
|
+
|
3657
|
+
"""
|
3658
|
+
return _VisualsSwig.Geometries_Sphere_setDynamic(self, key, value)
|
3659
|
+
|
3660
|
+
def getDynamic(self, key):
|
3661
|
+
r"""
|
3662
|
+
getDynamic(Geometries_Sphere self, std::string const & key) -> Any
|
3663
|
+
|
3664
|
+
Parameters
|
3665
|
+
----------
|
3666
|
+
key: std::string const &
|
3667
|
+
|
3668
|
+
"""
|
3669
|
+
return _VisualsSwig.Geometries_Sphere_getDynamic(self, key)
|
3670
|
+
|
3671
|
+
def callDynamic(self, key, args):
|
3672
|
+
r"""
|
3673
|
+
callDynamic(Geometries_Sphere self, std::string const & key, AnyVector args) -> Any
|
3674
|
+
|
3675
|
+
Parameters
|
3676
|
+
----------
|
3677
|
+
key: std::string const &
|
3678
|
+
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
3679
|
+
|
3680
|
+
"""
|
3681
|
+
return _VisualsSwig.Geometries_Sphere_callDynamic(self, key, args)
|
3682
|
+
|
3683
|
+
def extractObjectFieldsTo(self, output):
|
3684
|
+
r"""
|
3685
|
+
extractObjectFieldsTo(Geometries_Sphere self, ObjectVector output)
|
3686
|
+
|
3687
|
+
Parameters
|
3688
|
+
----------
|
3689
|
+
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
3690
|
+
|
3691
|
+
"""
|
3692
|
+
return _VisualsSwig.Geometries_Sphere_extractObjectFieldsTo(self, output)
|
3693
|
+
|
3694
|
+
def extractEntriesTo(self, output):
|
3695
|
+
r"""
|
3696
|
+
extractEntriesTo(Geometries_Sphere self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
3697
|
+
|
3698
|
+
Parameters
|
3699
|
+
----------
|
3700
|
+
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
3701
|
+
|
3702
|
+
"""
|
3703
|
+
return _VisualsSwig.Geometries_Sphere_extractEntriesTo(self, output)
|
3704
|
+
|
3705
|
+
def triggerOnInit(self, context):
|
3706
|
+
r"""
|
3707
|
+
triggerOnInit(Geometries_Sphere self, openplx::RuntimeContext const & context)
|
3708
|
+
|
3709
|
+
Parameters
|
3710
|
+
----------
|
3711
|
+
context: openplx::RuntimeContext const &
|
3712
|
+
|
3713
|
+
"""
|
3714
|
+
return _VisualsSwig.Geometries_Sphere_triggerOnInit(self, context)
|
3715
|
+
__swig_destroy__ = _VisualsSwig.delete_Geometries_Sphere
|
3716
|
+
|
3717
|
+
# Register Geometries_Sphere in _VisualsSwig:
|
3718
|
+
_VisualsSwig.Geometries_Sphere_swigregister(Geometries_Sphere)
|
3719
|
+
|
3720
|
+
class Materials_Material(openplx.Core.Object):
|
3721
|
+
r"""Proxy of C++ openplx::Visuals::Materials::Material class."""
|
3722
|
+
|
3723
|
+
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
3724
|
+
__repr__ = _swig_repr
|
3725
|
+
|
3726
|
+
def __init__(self):
|
3727
|
+
r"""__init__(Materials_Material self) -> Materials_Material"""
|
3728
|
+
_VisualsSwig.Materials_Material_swiginit(self, _VisualsSwig.new_Materials_Material())
|
3729
|
+
|
3730
|
+
def setDynamic(self, key, value):
|
3731
|
+
r"""
|
3732
|
+
setDynamic(Materials_Material self, std::string const & key, Any value)
|
3733
|
+
|
3734
|
+
Parameters
|
3735
|
+
----------
|
3736
|
+
key: std::string const &
|
3737
|
+
value: openplx::Core::Any &&
|
3738
|
+
|
3739
|
+
"""
|
3740
|
+
return _VisualsSwig.Materials_Material_setDynamic(self, key, value)
|
3741
|
+
|
3742
|
+
def getDynamic(self, key):
|
3743
|
+
r"""
|
3744
|
+
getDynamic(Materials_Material self, std::string const & key) -> Any
|
3745
|
+
|
3746
|
+
Parameters
|
3747
|
+
----------
|
3748
|
+
key: std::string const &
|
3749
|
+
|
3750
|
+
"""
|
3751
|
+
return _VisualsSwig.Materials_Material_getDynamic(self, key)
|
3752
|
+
|
3753
|
+
def callDynamic(self, key, args):
|
3754
|
+
r"""
|
3755
|
+
callDynamic(Materials_Material self, std::string const & key, AnyVector args) -> Any
|
3756
|
+
|
3757
|
+
Parameters
|
3758
|
+
----------
|
3759
|
+
key: std::string const &
|
3760
|
+
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
3761
|
+
|
3762
|
+
"""
|
3763
|
+
return _VisualsSwig.Materials_Material_callDynamic(self, key, args)
|
3764
|
+
|
3765
|
+
def extractObjectFieldsTo(self, output):
|
3766
|
+
r"""
|
3767
|
+
extractObjectFieldsTo(Materials_Material self, ObjectVector output)
|
3768
|
+
|
3769
|
+
Parameters
|
3770
|
+
----------
|
3771
|
+
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
3772
|
+
|
3773
|
+
"""
|
3774
|
+
return _VisualsSwig.Materials_Material_extractObjectFieldsTo(self, output)
|
3775
|
+
|
3776
|
+
def extractEntriesTo(self, output):
|
3777
|
+
r"""
|
3778
|
+
extractEntriesTo(Materials_Material self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
3779
|
+
|
3780
|
+
Parameters
|
3781
|
+
----------
|
3782
|
+
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
3783
|
+
|
3784
|
+
"""
|
3785
|
+
return _VisualsSwig.Materials_Material_extractEntriesTo(self, output)
|
3786
|
+
|
3787
|
+
def triggerOnInit(self, context):
|
3788
|
+
r"""
|
3789
|
+
triggerOnInit(Materials_Material self, openplx::RuntimeContext const & context)
|
3790
|
+
|
3791
|
+
Parameters
|
3792
|
+
----------
|
3793
|
+
context: openplx::RuntimeContext const &
|
3794
|
+
|
3795
|
+
"""
|
3796
|
+
return _VisualsSwig.Materials_Material_triggerOnInit(self, context)
|
3797
|
+
__swig_destroy__ = _VisualsSwig.delete_Materials_Material
|
3798
|
+
|
3799
|
+
# Register Materials_Material in _VisualsSwig:
|
3800
|
+
_VisualsSwig.Materials_Material_swigregister(Materials_Material)
|
3801
|
+
|
3802
|
+
class Materials_TextureMaterial(Materials_Material):
|
3803
|
+
r"""Proxy of C++ openplx::Visuals::Materials::TextureMaterial class."""
|
3804
|
+
|
3805
|
+
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
3806
|
+
__repr__ = _swig_repr
|
3807
|
+
|
3808
|
+
def __init__(self):
|
3809
|
+
r"""__init__(Materials_TextureMaterial self) -> Materials_TextureMaterial"""
|
3810
|
+
_VisualsSwig.Materials_TextureMaterial_swiginit(self, _VisualsSwig.new_Materials_TextureMaterial())
|
3811
|
+
|
3812
|
+
def path(self):
|
3813
|
+
r"""path(Materials_TextureMaterial self) -> std::string"""
|
3814
|
+
return _VisualsSwig.Materials_TextureMaterial_path(self)
|
3815
|
+
|
3816
|
+
def repeat(self):
|
3817
|
+
r"""repeat(Materials_TextureMaterial self) -> bool"""
|
3818
|
+
return _VisualsSwig.Materials_TextureMaterial_repeat(self)
|
3819
|
+
|
3820
|
+
def scale_u(self):
|
3821
|
+
r"""scale_u(Materials_TextureMaterial self) -> double"""
|
3822
|
+
return _VisualsSwig.Materials_TextureMaterial_scale_u(self)
|
3823
|
+
|
3824
|
+
def scale_v(self):
|
3825
|
+
r"""scale_v(Materials_TextureMaterial self) -> double"""
|
3826
|
+
return _VisualsSwig.Materials_TextureMaterial_scale_v(self)
|
3827
|
+
|
3828
|
+
def setDynamic(self, key, value):
|
3829
|
+
r"""
|
3830
|
+
setDynamic(Materials_TextureMaterial self, std::string const & key, Any value)
|
3831
|
+
|
3832
|
+
Parameters
|
3833
|
+
----------
|
3834
|
+
key: std::string const &
|
3835
|
+
value: openplx::Core::Any &&
|
3836
|
+
|
3837
|
+
"""
|
3838
|
+
return _VisualsSwig.Materials_TextureMaterial_setDynamic(self, key, value)
|
3839
|
+
|
3840
|
+
def getDynamic(self, key):
|
3841
|
+
r"""
|
3842
|
+
getDynamic(Materials_TextureMaterial self, std::string const & key) -> Any
|
3843
|
+
|
3844
|
+
Parameters
|
3845
|
+
----------
|
3846
|
+
key: std::string const &
|
3847
|
+
|
3848
|
+
"""
|
3849
|
+
return _VisualsSwig.Materials_TextureMaterial_getDynamic(self, key)
|
3850
|
+
|
3851
|
+
def callDynamic(self, key, args):
|
3852
|
+
r"""
|
3853
|
+
callDynamic(Materials_TextureMaterial self, std::string const & key, AnyVector args) -> Any
|
3854
|
+
|
3855
|
+
Parameters
|
3856
|
+
----------
|
3857
|
+
key: std::string const &
|
3858
|
+
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
3859
|
+
|
3860
|
+
"""
|
3861
|
+
return _VisualsSwig.Materials_TextureMaterial_callDynamic(self, key, args)
|
3862
|
+
|
3863
|
+
def extractObjectFieldsTo(self, output):
|
3864
|
+
r"""
|
3865
|
+
extractObjectFieldsTo(Materials_TextureMaterial self, ObjectVector output)
|
3866
|
+
|
3867
|
+
Parameters
|
3868
|
+
----------
|
3869
|
+
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
3870
|
+
|
3871
|
+
"""
|
3872
|
+
return _VisualsSwig.Materials_TextureMaterial_extractObjectFieldsTo(self, output)
|
3873
|
+
|
3874
|
+
def extractEntriesTo(self, output):
|
3875
|
+
r"""
|
3876
|
+
extractEntriesTo(Materials_TextureMaterial self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
3877
|
+
|
3878
|
+
Parameters
|
3879
|
+
----------
|
3880
|
+
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
3881
|
+
|
3882
|
+
"""
|
3883
|
+
return _VisualsSwig.Materials_TextureMaterial_extractEntriesTo(self, output)
|
3884
|
+
|
3885
|
+
def triggerOnInit(self, context):
|
3886
|
+
r"""
|
3887
|
+
triggerOnInit(Materials_TextureMaterial self, openplx::RuntimeContext const & context)
|
3888
|
+
|
3889
|
+
Parameters
|
3890
|
+
----------
|
3891
|
+
context: openplx::RuntimeContext const &
|
3892
|
+
|
3893
|
+
"""
|
3894
|
+
return _VisualsSwig.Materials_TextureMaterial_triggerOnInit(self, context)
|
3895
|
+
__swig_destroy__ = _VisualsSwig.delete_Materials_TextureMaterial
|
3896
|
+
|
3897
|
+
# Register Materials_TextureMaterial in _VisualsSwig:
|
3898
|
+
_VisualsSwig.Materials_TextureMaterial_swigregister(Materials_TextureMaterial)
|
3899
|
+
|
3900
|
+
|
3901
|
+
|