agx-openplx 0.15.0__cp310-cp310-manylinux_2_35_x86_64.whl
Sign up to get free protection for your applications and to get access to all the features.
- agx_openplx-0.15.0.dist-info/METADATA +232 -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-310-x86_64-linux-gnu.so +0 -0
- openplx/_CorePythonSwig.cpython-310-x86_64-linux-gnu.so +0 -0
- openplx/_DriveTrainSwig.cpython-310-x86_64-linux-gnu.so +0 -0
- openplx/_MathSwig.cpython-310-x86_64-linux-gnu.so +0 -0
- openplx/_Physics1DSwig.cpython-310-x86_64-linux-gnu.so +0 -0
- openplx/_Physics3DSwig.cpython-310-x86_64-linux-gnu.so +0 -0
- openplx/_PhysicsSwig.cpython-310-x86_64-linux-gnu.so +0 -0
- openplx/_RoboticsSwig.cpython-310-x86_64-linux-gnu.so +0 -0
- openplx/_SimulationSwig.cpython-310-x86_64-linux-gnu.so +0 -0
- openplx/_TerrainSwig.cpython-310-x86_64-linux-gnu.so +0 -0
- openplx/_UrdfSwig.cpython-310-x86_64-linux-gnu.so +0 -0
- openplx/_VehiclesSwig.cpython-310-x86_64-linux-gnu.so +0 -0
- openplx/_VisualsSwig.cpython-310-x86_64-linux-gnu.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/Simulation.py
ADDED
@@ -0,0 +1,1056 @@
|
|
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 _SimulationSwig
|
14
|
+
else:
|
15
|
+
import _SimulationSwig
|
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 = _SimulationSwig.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__ = _SimulationSwig.delete_SwigPyIterator
|
75
|
+
|
76
|
+
def value(self):
|
77
|
+
r"""value(SwigPyIterator self) -> PyObject *"""
|
78
|
+
return _SimulationSwig.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 _SimulationSwig.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 _SimulationSwig.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 _SimulationSwig.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 _SimulationSwig.SwigPyIterator_equal(self, x)
|
123
|
+
|
124
|
+
def copy(self):
|
125
|
+
r"""copy(SwigPyIterator self) -> SwigPyIterator"""
|
126
|
+
return _SimulationSwig.SwigPyIterator_copy(self)
|
127
|
+
|
128
|
+
def next(self):
|
129
|
+
r"""next(SwigPyIterator self) -> PyObject *"""
|
130
|
+
return _SimulationSwig.SwigPyIterator_next(self)
|
131
|
+
|
132
|
+
def __next__(self):
|
133
|
+
r"""__next__(SwigPyIterator self) -> PyObject *"""
|
134
|
+
return _SimulationSwig.SwigPyIterator___next__(self)
|
135
|
+
|
136
|
+
def previous(self):
|
137
|
+
r"""previous(SwigPyIterator self) -> PyObject *"""
|
138
|
+
return _SimulationSwig.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 _SimulationSwig.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 _SimulationSwig.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 _SimulationSwig.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 _SimulationSwig.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 _SimulationSwig.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 _SimulationSwig.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 _SimulationSwig.SwigPyIterator___sub__(self, *args)
|
222
|
+
def __iter__(self):
|
223
|
+
return self
|
224
|
+
|
225
|
+
# Register SwigPyIterator in _SimulationSwig:
|
226
|
+
_SimulationSwig.SwigPyIterator_swigregister(SwigPyIterator)
|
227
|
+
|
228
|
+
import openplx.Core
|
229
|
+
import openplx.Math
|
230
|
+
import openplx.Physics
|
231
|
+
class Simulation_CollisionGroup_Vector(object):
|
232
|
+
r"""Proxy of C++ std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > > class."""
|
233
|
+
|
234
|
+
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
235
|
+
__repr__ = _swig_repr
|
236
|
+
|
237
|
+
def iterator(self):
|
238
|
+
r"""iterator(Simulation_CollisionGroup_Vector self) -> SwigPyIterator"""
|
239
|
+
return _SimulationSwig.Simulation_CollisionGroup_Vector_iterator(self)
|
240
|
+
def __iter__(self):
|
241
|
+
return self.iterator()
|
242
|
+
|
243
|
+
def __nonzero__(self):
|
244
|
+
r"""__nonzero__(Simulation_CollisionGroup_Vector self) -> bool"""
|
245
|
+
return _SimulationSwig.Simulation_CollisionGroup_Vector___nonzero__(self)
|
246
|
+
|
247
|
+
def __bool__(self):
|
248
|
+
r"""__bool__(Simulation_CollisionGroup_Vector self) -> bool"""
|
249
|
+
return _SimulationSwig.Simulation_CollisionGroup_Vector___bool__(self)
|
250
|
+
|
251
|
+
def __len__(self):
|
252
|
+
r"""__len__(Simulation_CollisionGroup_Vector self) -> std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::size_type"""
|
253
|
+
return _SimulationSwig.Simulation_CollisionGroup_Vector___len__(self)
|
254
|
+
|
255
|
+
def __getslice__(self, i, j):
|
256
|
+
r"""
|
257
|
+
__getslice__(Simulation_CollisionGroup_Vector self, std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::difference_type i, std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::difference_type j) -> Simulation_CollisionGroup_Vector
|
258
|
+
|
259
|
+
Parameters
|
260
|
+
----------
|
261
|
+
i: std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::difference_type
|
262
|
+
j: std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::difference_type
|
263
|
+
|
264
|
+
"""
|
265
|
+
return _SimulationSwig.Simulation_CollisionGroup_Vector___getslice__(self, i, j)
|
266
|
+
|
267
|
+
def __setslice__(self, *args):
|
268
|
+
r"""
|
269
|
+
__setslice__(Simulation_CollisionGroup_Vector self, std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::difference_type i, std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::difference_type j)
|
270
|
+
|
271
|
+
Parameters
|
272
|
+
----------
|
273
|
+
i: std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::difference_type
|
274
|
+
j: std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::difference_type
|
275
|
+
|
276
|
+
__setslice__(Simulation_CollisionGroup_Vector self, std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::difference_type i, std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::difference_type j, Simulation_CollisionGroup_Vector v)
|
277
|
+
|
278
|
+
Parameters
|
279
|
+
----------
|
280
|
+
i: std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::difference_type
|
281
|
+
j: std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::difference_type
|
282
|
+
v: std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup >,std::allocator< std::shared_ptr< openplx::Simulation::CollisionGroup > > > const &
|
283
|
+
|
284
|
+
"""
|
285
|
+
return _SimulationSwig.Simulation_CollisionGroup_Vector___setslice__(self, *args)
|
286
|
+
|
287
|
+
def __delslice__(self, i, j):
|
288
|
+
r"""
|
289
|
+
__delslice__(Simulation_CollisionGroup_Vector self, std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::difference_type i, std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::difference_type j)
|
290
|
+
|
291
|
+
Parameters
|
292
|
+
----------
|
293
|
+
i: std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::difference_type
|
294
|
+
j: std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::difference_type
|
295
|
+
|
296
|
+
"""
|
297
|
+
return _SimulationSwig.Simulation_CollisionGroup_Vector___delslice__(self, i, j)
|
298
|
+
|
299
|
+
def __delitem__(self, *args):
|
300
|
+
r"""
|
301
|
+
__delitem__(Simulation_CollisionGroup_Vector self, std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::difference_type i)
|
302
|
+
|
303
|
+
Parameters
|
304
|
+
----------
|
305
|
+
i: std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::difference_type
|
306
|
+
|
307
|
+
__delitem__(Simulation_CollisionGroup_Vector self, PySliceObject * slice)
|
308
|
+
|
309
|
+
Parameters
|
310
|
+
----------
|
311
|
+
slice: PySliceObject *
|
312
|
+
|
313
|
+
"""
|
314
|
+
return _SimulationSwig.Simulation_CollisionGroup_Vector___delitem__(self, *args)
|
315
|
+
|
316
|
+
def __getitem__(self, *args):
|
317
|
+
r"""
|
318
|
+
__getitem__(Simulation_CollisionGroup_Vector self, PySliceObject * slice) -> Simulation_CollisionGroup_Vector
|
319
|
+
|
320
|
+
Parameters
|
321
|
+
----------
|
322
|
+
slice: PySliceObject *
|
323
|
+
|
324
|
+
__getitem__(Simulation_CollisionGroup_Vector self, std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::difference_type i) -> std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::value_type const &
|
325
|
+
|
326
|
+
Parameters
|
327
|
+
----------
|
328
|
+
i: std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::difference_type
|
329
|
+
|
330
|
+
"""
|
331
|
+
return _SimulationSwig.Simulation_CollisionGroup_Vector___getitem__(self, *args)
|
332
|
+
|
333
|
+
def __setitem__(self, *args):
|
334
|
+
r"""
|
335
|
+
__setitem__(Simulation_CollisionGroup_Vector self, PySliceObject * slice, Simulation_CollisionGroup_Vector v)
|
336
|
+
|
337
|
+
Parameters
|
338
|
+
----------
|
339
|
+
slice: PySliceObject *
|
340
|
+
v: std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup >,std::allocator< std::shared_ptr< openplx::Simulation::CollisionGroup > > > const &
|
341
|
+
|
342
|
+
__setitem__(Simulation_CollisionGroup_Vector self, PySliceObject * slice)
|
343
|
+
|
344
|
+
Parameters
|
345
|
+
----------
|
346
|
+
slice: PySliceObject *
|
347
|
+
|
348
|
+
__setitem__(Simulation_CollisionGroup_Vector self, std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::difference_type i, std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::value_type const & x)
|
349
|
+
|
350
|
+
Parameters
|
351
|
+
----------
|
352
|
+
i: std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::difference_type
|
353
|
+
x: std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::value_type const &
|
354
|
+
|
355
|
+
"""
|
356
|
+
return _SimulationSwig.Simulation_CollisionGroup_Vector___setitem__(self, *args)
|
357
|
+
|
358
|
+
def pop(self):
|
359
|
+
r"""pop(Simulation_CollisionGroup_Vector self) -> std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::value_type"""
|
360
|
+
return _SimulationSwig.Simulation_CollisionGroup_Vector_pop(self)
|
361
|
+
|
362
|
+
def append(self, x):
|
363
|
+
r"""
|
364
|
+
append(Simulation_CollisionGroup_Vector self, std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::value_type const & x)
|
365
|
+
|
366
|
+
Parameters
|
367
|
+
----------
|
368
|
+
x: std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::value_type const &
|
369
|
+
|
370
|
+
"""
|
371
|
+
return _SimulationSwig.Simulation_CollisionGroup_Vector_append(self, x)
|
372
|
+
|
373
|
+
def empty(self):
|
374
|
+
r"""empty(Simulation_CollisionGroup_Vector self) -> bool"""
|
375
|
+
return _SimulationSwig.Simulation_CollisionGroup_Vector_empty(self)
|
376
|
+
|
377
|
+
def size(self):
|
378
|
+
r"""size(Simulation_CollisionGroup_Vector self) -> std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::size_type"""
|
379
|
+
return _SimulationSwig.Simulation_CollisionGroup_Vector_size(self)
|
380
|
+
|
381
|
+
def swap(self, v):
|
382
|
+
r"""
|
383
|
+
swap(Simulation_CollisionGroup_Vector self, Simulation_CollisionGroup_Vector v)
|
384
|
+
|
385
|
+
Parameters
|
386
|
+
----------
|
387
|
+
v: std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > > &
|
388
|
+
|
389
|
+
"""
|
390
|
+
return _SimulationSwig.Simulation_CollisionGroup_Vector_swap(self, v)
|
391
|
+
|
392
|
+
def begin(self):
|
393
|
+
r"""begin(Simulation_CollisionGroup_Vector self) -> std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::iterator"""
|
394
|
+
return _SimulationSwig.Simulation_CollisionGroup_Vector_begin(self)
|
395
|
+
|
396
|
+
def end(self):
|
397
|
+
r"""end(Simulation_CollisionGroup_Vector self) -> std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::iterator"""
|
398
|
+
return _SimulationSwig.Simulation_CollisionGroup_Vector_end(self)
|
399
|
+
|
400
|
+
def rbegin(self):
|
401
|
+
r"""rbegin(Simulation_CollisionGroup_Vector self) -> std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::reverse_iterator"""
|
402
|
+
return _SimulationSwig.Simulation_CollisionGroup_Vector_rbegin(self)
|
403
|
+
|
404
|
+
def rend(self):
|
405
|
+
r"""rend(Simulation_CollisionGroup_Vector self) -> std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::reverse_iterator"""
|
406
|
+
return _SimulationSwig.Simulation_CollisionGroup_Vector_rend(self)
|
407
|
+
|
408
|
+
def clear(self):
|
409
|
+
r"""clear(Simulation_CollisionGroup_Vector self)"""
|
410
|
+
return _SimulationSwig.Simulation_CollisionGroup_Vector_clear(self)
|
411
|
+
|
412
|
+
def get_allocator(self):
|
413
|
+
r"""get_allocator(Simulation_CollisionGroup_Vector self) -> std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::allocator_type"""
|
414
|
+
return _SimulationSwig.Simulation_CollisionGroup_Vector_get_allocator(self)
|
415
|
+
|
416
|
+
def pop_back(self):
|
417
|
+
r"""pop_back(Simulation_CollisionGroup_Vector self)"""
|
418
|
+
return _SimulationSwig.Simulation_CollisionGroup_Vector_pop_back(self)
|
419
|
+
|
420
|
+
def erase(self, *args):
|
421
|
+
r"""
|
422
|
+
erase(Simulation_CollisionGroup_Vector self, std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::iterator pos) -> std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::iterator
|
423
|
+
|
424
|
+
Parameters
|
425
|
+
----------
|
426
|
+
pos: std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::iterator
|
427
|
+
|
428
|
+
erase(Simulation_CollisionGroup_Vector self, std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::iterator first, std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::iterator last) -> std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::iterator
|
429
|
+
|
430
|
+
Parameters
|
431
|
+
----------
|
432
|
+
first: std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::iterator
|
433
|
+
last: std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::iterator
|
434
|
+
|
435
|
+
"""
|
436
|
+
return _SimulationSwig.Simulation_CollisionGroup_Vector_erase(self, *args)
|
437
|
+
|
438
|
+
def __init__(self, *args):
|
439
|
+
r"""
|
440
|
+
__init__(Simulation_CollisionGroup_Vector self) -> Simulation_CollisionGroup_Vector
|
441
|
+
__init__(Simulation_CollisionGroup_Vector self, Simulation_CollisionGroup_Vector other) -> Simulation_CollisionGroup_Vector
|
442
|
+
|
443
|
+
Parameters
|
444
|
+
----------
|
445
|
+
other: std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > > const &
|
446
|
+
|
447
|
+
__init__(Simulation_CollisionGroup_Vector self, std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::size_type size) -> Simulation_CollisionGroup_Vector
|
448
|
+
|
449
|
+
Parameters
|
450
|
+
----------
|
451
|
+
size: std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::size_type
|
452
|
+
|
453
|
+
__init__(Simulation_CollisionGroup_Vector self, std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::size_type size, std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::value_type const & value) -> Simulation_CollisionGroup_Vector
|
454
|
+
|
455
|
+
Parameters
|
456
|
+
----------
|
457
|
+
size: std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::size_type
|
458
|
+
value: std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::value_type const &
|
459
|
+
|
460
|
+
"""
|
461
|
+
_SimulationSwig.Simulation_CollisionGroup_Vector_swiginit(self, _SimulationSwig.new_Simulation_CollisionGroup_Vector(*args))
|
462
|
+
|
463
|
+
def push_back(self, x):
|
464
|
+
r"""
|
465
|
+
push_back(Simulation_CollisionGroup_Vector self, std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::value_type const & x)
|
466
|
+
|
467
|
+
Parameters
|
468
|
+
----------
|
469
|
+
x: std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::value_type const &
|
470
|
+
|
471
|
+
"""
|
472
|
+
return _SimulationSwig.Simulation_CollisionGroup_Vector_push_back(self, x)
|
473
|
+
|
474
|
+
def front(self):
|
475
|
+
r"""front(Simulation_CollisionGroup_Vector self) -> std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::value_type const &"""
|
476
|
+
return _SimulationSwig.Simulation_CollisionGroup_Vector_front(self)
|
477
|
+
|
478
|
+
def back(self):
|
479
|
+
r"""back(Simulation_CollisionGroup_Vector self) -> std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::value_type const &"""
|
480
|
+
return _SimulationSwig.Simulation_CollisionGroup_Vector_back(self)
|
481
|
+
|
482
|
+
def assign(self, n, x):
|
483
|
+
r"""
|
484
|
+
assign(Simulation_CollisionGroup_Vector self, std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::size_type n, std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::value_type const & x)
|
485
|
+
|
486
|
+
Parameters
|
487
|
+
----------
|
488
|
+
n: std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::size_type
|
489
|
+
x: std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::value_type const &
|
490
|
+
|
491
|
+
"""
|
492
|
+
return _SimulationSwig.Simulation_CollisionGroup_Vector_assign(self, n, x)
|
493
|
+
|
494
|
+
def resize(self, *args):
|
495
|
+
r"""
|
496
|
+
resize(Simulation_CollisionGroup_Vector self, std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::size_type new_size)
|
497
|
+
|
498
|
+
Parameters
|
499
|
+
----------
|
500
|
+
new_size: std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::size_type
|
501
|
+
|
502
|
+
resize(Simulation_CollisionGroup_Vector self, std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::size_type new_size, std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::value_type const & x)
|
503
|
+
|
504
|
+
Parameters
|
505
|
+
----------
|
506
|
+
new_size: std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::size_type
|
507
|
+
x: std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::value_type const &
|
508
|
+
|
509
|
+
"""
|
510
|
+
return _SimulationSwig.Simulation_CollisionGroup_Vector_resize(self, *args)
|
511
|
+
|
512
|
+
def insert(self, *args):
|
513
|
+
r"""
|
514
|
+
insert(Simulation_CollisionGroup_Vector self, std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::iterator pos, std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::value_type const & x) -> std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::iterator
|
515
|
+
|
516
|
+
Parameters
|
517
|
+
----------
|
518
|
+
pos: std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::iterator
|
519
|
+
x: std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::value_type const &
|
520
|
+
|
521
|
+
insert(Simulation_CollisionGroup_Vector self, std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::iterator pos, std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::size_type n, std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::value_type const & x)
|
522
|
+
|
523
|
+
Parameters
|
524
|
+
----------
|
525
|
+
pos: std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::iterator
|
526
|
+
n: std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::size_type
|
527
|
+
x: std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::value_type const &
|
528
|
+
|
529
|
+
"""
|
530
|
+
return _SimulationSwig.Simulation_CollisionGroup_Vector_insert(self, *args)
|
531
|
+
|
532
|
+
def reserve(self, n):
|
533
|
+
r"""
|
534
|
+
reserve(Simulation_CollisionGroup_Vector self, std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::size_type n)
|
535
|
+
|
536
|
+
Parameters
|
537
|
+
----------
|
538
|
+
n: std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::size_type
|
539
|
+
|
540
|
+
"""
|
541
|
+
return _SimulationSwig.Simulation_CollisionGroup_Vector_reserve(self, n)
|
542
|
+
|
543
|
+
def capacity(self):
|
544
|
+
r"""capacity(Simulation_CollisionGroup_Vector self) -> std::vector< std::shared_ptr< openplx::Simulation::CollisionGroup > >::size_type"""
|
545
|
+
return _SimulationSwig.Simulation_CollisionGroup_Vector_capacity(self)
|
546
|
+
__swig_destroy__ = _SimulationSwig.delete_Simulation_CollisionGroup_Vector
|
547
|
+
|
548
|
+
# Register Simulation_CollisionGroup_Vector in _SimulationSwig:
|
549
|
+
_SimulationSwig.Simulation_CollisionGroup_Vector_swigregister(Simulation_CollisionGroup_Vector)
|
550
|
+
|
551
|
+
class Simulation_DisableCollisionPair_Vector(object):
|
552
|
+
r"""Proxy of C++ std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > > class."""
|
553
|
+
|
554
|
+
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
555
|
+
__repr__ = _swig_repr
|
556
|
+
|
557
|
+
def iterator(self):
|
558
|
+
r"""iterator(Simulation_DisableCollisionPair_Vector self) -> SwigPyIterator"""
|
559
|
+
return _SimulationSwig.Simulation_DisableCollisionPair_Vector_iterator(self)
|
560
|
+
def __iter__(self):
|
561
|
+
return self.iterator()
|
562
|
+
|
563
|
+
def __nonzero__(self):
|
564
|
+
r"""__nonzero__(Simulation_DisableCollisionPair_Vector self) -> bool"""
|
565
|
+
return _SimulationSwig.Simulation_DisableCollisionPair_Vector___nonzero__(self)
|
566
|
+
|
567
|
+
def __bool__(self):
|
568
|
+
r"""__bool__(Simulation_DisableCollisionPair_Vector self) -> bool"""
|
569
|
+
return _SimulationSwig.Simulation_DisableCollisionPair_Vector___bool__(self)
|
570
|
+
|
571
|
+
def __len__(self):
|
572
|
+
r"""__len__(Simulation_DisableCollisionPair_Vector self) -> std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::size_type"""
|
573
|
+
return _SimulationSwig.Simulation_DisableCollisionPair_Vector___len__(self)
|
574
|
+
|
575
|
+
def __getslice__(self, i, j):
|
576
|
+
r"""
|
577
|
+
__getslice__(Simulation_DisableCollisionPair_Vector self, std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::difference_type i, std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::difference_type j) -> Simulation_DisableCollisionPair_Vector
|
578
|
+
|
579
|
+
Parameters
|
580
|
+
----------
|
581
|
+
i: std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::difference_type
|
582
|
+
j: std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::difference_type
|
583
|
+
|
584
|
+
"""
|
585
|
+
return _SimulationSwig.Simulation_DisableCollisionPair_Vector___getslice__(self, i, j)
|
586
|
+
|
587
|
+
def __setslice__(self, *args):
|
588
|
+
r"""
|
589
|
+
__setslice__(Simulation_DisableCollisionPair_Vector self, std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::difference_type i, std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::difference_type j)
|
590
|
+
|
591
|
+
Parameters
|
592
|
+
----------
|
593
|
+
i: std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::difference_type
|
594
|
+
j: std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::difference_type
|
595
|
+
|
596
|
+
__setslice__(Simulation_DisableCollisionPair_Vector self, std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::difference_type i, std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::difference_type j, Simulation_DisableCollisionPair_Vector v)
|
597
|
+
|
598
|
+
Parameters
|
599
|
+
----------
|
600
|
+
i: std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::difference_type
|
601
|
+
j: std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::difference_type
|
602
|
+
v: std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair >,std::allocator< std::shared_ptr< openplx::Simulation::DisableCollisionPair > > > const &
|
603
|
+
|
604
|
+
"""
|
605
|
+
return _SimulationSwig.Simulation_DisableCollisionPair_Vector___setslice__(self, *args)
|
606
|
+
|
607
|
+
def __delslice__(self, i, j):
|
608
|
+
r"""
|
609
|
+
__delslice__(Simulation_DisableCollisionPair_Vector self, std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::difference_type i, std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::difference_type j)
|
610
|
+
|
611
|
+
Parameters
|
612
|
+
----------
|
613
|
+
i: std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::difference_type
|
614
|
+
j: std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::difference_type
|
615
|
+
|
616
|
+
"""
|
617
|
+
return _SimulationSwig.Simulation_DisableCollisionPair_Vector___delslice__(self, i, j)
|
618
|
+
|
619
|
+
def __delitem__(self, *args):
|
620
|
+
r"""
|
621
|
+
__delitem__(Simulation_DisableCollisionPair_Vector self, std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::difference_type i)
|
622
|
+
|
623
|
+
Parameters
|
624
|
+
----------
|
625
|
+
i: std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::difference_type
|
626
|
+
|
627
|
+
__delitem__(Simulation_DisableCollisionPair_Vector self, PySliceObject * slice)
|
628
|
+
|
629
|
+
Parameters
|
630
|
+
----------
|
631
|
+
slice: PySliceObject *
|
632
|
+
|
633
|
+
"""
|
634
|
+
return _SimulationSwig.Simulation_DisableCollisionPair_Vector___delitem__(self, *args)
|
635
|
+
|
636
|
+
def __getitem__(self, *args):
|
637
|
+
r"""
|
638
|
+
__getitem__(Simulation_DisableCollisionPair_Vector self, PySliceObject * slice) -> Simulation_DisableCollisionPair_Vector
|
639
|
+
|
640
|
+
Parameters
|
641
|
+
----------
|
642
|
+
slice: PySliceObject *
|
643
|
+
|
644
|
+
__getitem__(Simulation_DisableCollisionPair_Vector self, std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::difference_type i) -> std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::value_type const &
|
645
|
+
|
646
|
+
Parameters
|
647
|
+
----------
|
648
|
+
i: std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::difference_type
|
649
|
+
|
650
|
+
"""
|
651
|
+
return _SimulationSwig.Simulation_DisableCollisionPair_Vector___getitem__(self, *args)
|
652
|
+
|
653
|
+
def __setitem__(self, *args):
|
654
|
+
r"""
|
655
|
+
__setitem__(Simulation_DisableCollisionPair_Vector self, PySliceObject * slice, Simulation_DisableCollisionPair_Vector v)
|
656
|
+
|
657
|
+
Parameters
|
658
|
+
----------
|
659
|
+
slice: PySliceObject *
|
660
|
+
v: std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair >,std::allocator< std::shared_ptr< openplx::Simulation::DisableCollisionPair > > > const &
|
661
|
+
|
662
|
+
__setitem__(Simulation_DisableCollisionPair_Vector self, PySliceObject * slice)
|
663
|
+
|
664
|
+
Parameters
|
665
|
+
----------
|
666
|
+
slice: PySliceObject *
|
667
|
+
|
668
|
+
__setitem__(Simulation_DisableCollisionPair_Vector self, std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::difference_type i, std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::value_type const & x)
|
669
|
+
|
670
|
+
Parameters
|
671
|
+
----------
|
672
|
+
i: std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::difference_type
|
673
|
+
x: std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::value_type const &
|
674
|
+
|
675
|
+
"""
|
676
|
+
return _SimulationSwig.Simulation_DisableCollisionPair_Vector___setitem__(self, *args)
|
677
|
+
|
678
|
+
def pop(self):
|
679
|
+
r"""pop(Simulation_DisableCollisionPair_Vector self) -> std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::value_type"""
|
680
|
+
return _SimulationSwig.Simulation_DisableCollisionPair_Vector_pop(self)
|
681
|
+
|
682
|
+
def append(self, x):
|
683
|
+
r"""
|
684
|
+
append(Simulation_DisableCollisionPair_Vector self, std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::value_type const & x)
|
685
|
+
|
686
|
+
Parameters
|
687
|
+
----------
|
688
|
+
x: std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::value_type const &
|
689
|
+
|
690
|
+
"""
|
691
|
+
return _SimulationSwig.Simulation_DisableCollisionPair_Vector_append(self, x)
|
692
|
+
|
693
|
+
def empty(self):
|
694
|
+
r"""empty(Simulation_DisableCollisionPair_Vector self) -> bool"""
|
695
|
+
return _SimulationSwig.Simulation_DisableCollisionPair_Vector_empty(self)
|
696
|
+
|
697
|
+
def size(self):
|
698
|
+
r"""size(Simulation_DisableCollisionPair_Vector self) -> std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::size_type"""
|
699
|
+
return _SimulationSwig.Simulation_DisableCollisionPair_Vector_size(self)
|
700
|
+
|
701
|
+
def swap(self, v):
|
702
|
+
r"""
|
703
|
+
swap(Simulation_DisableCollisionPair_Vector self, Simulation_DisableCollisionPair_Vector v)
|
704
|
+
|
705
|
+
Parameters
|
706
|
+
----------
|
707
|
+
v: std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > > &
|
708
|
+
|
709
|
+
"""
|
710
|
+
return _SimulationSwig.Simulation_DisableCollisionPair_Vector_swap(self, v)
|
711
|
+
|
712
|
+
def begin(self):
|
713
|
+
r"""begin(Simulation_DisableCollisionPair_Vector self) -> std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::iterator"""
|
714
|
+
return _SimulationSwig.Simulation_DisableCollisionPair_Vector_begin(self)
|
715
|
+
|
716
|
+
def end(self):
|
717
|
+
r"""end(Simulation_DisableCollisionPair_Vector self) -> std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::iterator"""
|
718
|
+
return _SimulationSwig.Simulation_DisableCollisionPair_Vector_end(self)
|
719
|
+
|
720
|
+
def rbegin(self):
|
721
|
+
r"""rbegin(Simulation_DisableCollisionPair_Vector self) -> std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::reverse_iterator"""
|
722
|
+
return _SimulationSwig.Simulation_DisableCollisionPair_Vector_rbegin(self)
|
723
|
+
|
724
|
+
def rend(self):
|
725
|
+
r"""rend(Simulation_DisableCollisionPair_Vector self) -> std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::reverse_iterator"""
|
726
|
+
return _SimulationSwig.Simulation_DisableCollisionPair_Vector_rend(self)
|
727
|
+
|
728
|
+
def clear(self):
|
729
|
+
r"""clear(Simulation_DisableCollisionPair_Vector self)"""
|
730
|
+
return _SimulationSwig.Simulation_DisableCollisionPair_Vector_clear(self)
|
731
|
+
|
732
|
+
def get_allocator(self):
|
733
|
+
r"""get_allocator(Simulation_DisableCollisionPair_Vector self) -> std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::allocator_type"""
|
734
|
+
return _SimulationSwig.Simulation_DisableCollisionPair_Vector_get_allocator(self)
|
735
|
+
|
736
|
+
def pop_back(self):
|
737
|
+
r"""pop_back(Simulation_DisableCollisionPair_Vector self)"""
|
738
|
+
return _SimulationSwig.Simulation_DisableCollisionPair_Vector_pop_back(self)
|
739
|
+
|
740
|
+
def erase(self, *args):
|
741
|
+
r"""
|
742
|
+
erase(Simulation_DisableCollisionPair_Vector self, std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::iterator pos) -> std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::iterator
|
743
|
+
|
744
|
+
Parameters
|
745
|
+
----------
|
746
|
+
pos: std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::iterator
|
747
|
+
|
748
|
+
erase(Simulation_DisableCollisionPair_Vector self, std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::iterator first, std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::iterator last) -> std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::iterator
|
749
|
+
|
750
|
+
Parameters
|
751
|
+
----------
|
752
|
+
first: std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::iterator
|
753
|
+
last: std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::iterator
|
754
|
+
|
755
|
+
"""
|
756
|
+
return _SimulationSwig.Simulation_DisableCollisionPair_Vector_erase(self, *args)
|
757
|
+
|
758
|
+
def __init__(self, *args):
|
759
|
+
r"""
|
760
|
+
__init__(Simulation_DisableCollisionPair_Vector self) -> Simulation_DisableCollisionPair_Vector
|
761
|
+
__init__(Simulation_DisableCollisionPair_Vector self, Simulation_DisableCollisionPair_Vector other) -> Simulation_DisableCollisionPair_Vector
|
762
|
+
|
763
|
+
Parameters
|
764
|
+
----------
|
765
|
+
other: std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > > const &
|
766
|
+
|
767
|
+
__init__(Simulation_DisableCollisionPair_Vector self, std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::size_type size) -> Simulation_DisableCollisionPair_Vector
|
768
|
+
|
769
|
+
Parameters
|
770
|
+
----------
|
771
|
+
size: std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::size_type
|
772
|
+
|
773
|
+
__init__(Simulation_DisableCollisionPair_Vector self, std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::size_type size, std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::value_type const & value) -> Simulation_DisableCollisionPair_Vector
|
774
|
+
|
775
|
+
Parameters
|
776
|
+
----------
|
777
|
+
size: std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::size_type
|
778
|
+
value: std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::value_type const &
|
779
|
+
|
780
|
+
"""
|
781
|
+
_SimulationSwig.Simulation_DisableCollisionPair_Vector_swiginit(self, _SimulationSwig.new_Simulation_DisableCollisionPair_Vector(*args))
|
782
|
+
|
783
|
+
def push_back(self, x):
|
784
|
+
r"""
|
785
|
+
push_back(Simulation_DisableCollisionPair_Vector self, std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::value_type const & x)
|
786
|
+
|
787
|
+
Parameters
|
788
|
+
----------
|
789
|
+
x: std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::value_type const &
|
790
|
+
|
791
|
+
"""
|
792
|
+
return _SimulationSwig.Simulation_DisableCollisionPair_Vector_push_back(self, x)
|
793
|
+
|
794
|
+
def front(self):
|
795
|
+
r"""front(Simulation_DisableCollisionPair_Vector self) -> std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::value_type const &"""
|
796
|
+
return _SimulationSwig.Simulation_DisableCollisionPair_Vector_front(self)
|
797
|
+
|
798
|
+
def back(self):
|
799
|
+
r"""back(Simulation_DisableCollisionPair_Vector self) -> std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::value_type const &"""
|
800
|
+
return _SimulationSwig.Simulation_DisableCollisionPair_Vector_back(self)
|
801
|
+
|
802
|
+
def assign(self, n, x):
|
803
|
+
r"""
|
804
|
+
assign(Simulation_DisableCollisionPair_Vector self, std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::size_type n, std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::value_type const & x)
|
805
|
+
|
806
|
+
Parameters
|
807
|
+
----------
|
808
|
+
n: std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::size_type
|
809
|
+
x: std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::value_type const &
|
810
|
+
|
811
|
+
"""
|
812
|
+
return _SimulationSwig.Simulation_DisableCollisionPair_Vector_assign(self, n, x)
|
813
|
+
|
814
|
+
def resize(self, *args):
|
815
|
+
r"""
|
816
|
+
resize(Simulation_DisableCollisionPair_Vector self, std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::size_type new_size)
|
817
|
+
|
818
|
+
Parameters
|
819
|
+
----------
|
820
|
+
new_size: std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::size_type
|
821
|
+
|
822
|
+
resize(Simulation_DisableCollisionPair_Vector self, std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::size_type new_size, std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::value_type const & x)
|
823
|
+
|
824
|
+
Parameters
|
825
|
+
----------
|
826
|
+
new_size: std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::size_type
|
827
|
+
x: std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::value_type const &
|
828
|
+
|
829
|
+
"""
|
830
|
+
return _SimulationSwig.Simulation_DisableCollisionPair_Vector_resize(self, *args)
|
831
|
+
|
832
|
+
def insert(self, *args):
|
833
|
+
r"""
|
834
|
+
insert(Simulation_DisableCollisionPair_Vector self, std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::iterator pos, std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::value_type const & x) -> std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::iterator
|
835
|
+
|
836
|
+
Parameters
|
837
|
+
----------
|
838
|
+
pos: std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::iterator
|
839
|
+
x: std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::value_type const &
|
840
|
+
|
841
|
+
insert(Simulation_DisableCollisionPair_Vector self, std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::iterator pos, std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::size_type n, std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::value_type const & x)
|
842
|
+
|
843
|
+
Parameters
|
844
|
+
----------
|
845
|
+
pos: std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::iterator
|
846
|
+
n: std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::size_type
|
847
|
+
x: std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::value_type const &
|
848
|
+
|
849
|
+
"""
|
850
|
+
return _SimulationSwig.Simulation_DisableCollisionPair_Vector_insert(self, *args)
|
851
|
+
|
852
|
+
def reserve(self, n):
|
853
|
+
r"""
|
854
|
+
reserve(Simulation_DisableCollisionPair_Vector self, std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::size_type n)
|
855
|
+
|
856
|
+
Parameters
|
857
|
+
----------
|
858
|
+
n: std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::size_type
|
859
|
+
|
860
|
+
"""
|
861
|
+
return _SimulationSwig.Simulation_DisableCollisionPair_Vector_reserve(self, n)
|
862
|
+
|
863
|
+
def capacity(self):
|
864
|
+
r"""capacity(Simulation_DisableCollisionPair_Vector self) -> std::vector< std::shared_ptr< openplx::Simulation::DisableCollisionPair > >::size_type"""
|
865
|
+
return _SimulationSwig.Simulation_DisableCollisionPair_Vector_capacity(self)
|
866
|
+
__swig_destroy__ = _SimulationSwig.delete_Simulation_DisableCollisionPair_Vector
|
867
|
+
|
868
|
+
# Register Simulation_DisableCollisionPair_Vector in _SimulationSwig:
|
869
|
+
_SimulationSwig.Simulation_DisableCollisionPair_Vector_swigregister(Simulation_DisableCollisionPair_Vector)
|
870
|
+
|
871
|
+
class CollisionGroup(openplx.Core.Object):
|
872
|
+
r"""Proxy of C++ openplx::Simulation::CollisionGroup class."""
|
873
|
+
|
874
|
+
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
875
|
+
__repr__ = _swig_repr
|
876
|
+
|
877
|
+
def __init__(self):
|
878
|
+
r"""__init__(CollisionGroup self) -> CollisionGroup"""
|
879
|
+
_SimulationSwig.CollisionGroup_swiginit(self, _SimulationSwig.new_CollisionGroup())
|
880
|
+
|
881
|
+
def systems(self):
|
882
|
+
r"""systems(CollisionGroup self) -> Physics_System_Vector"""
|
883
|
+
return _SimulationSwig.CollisionGroup_systems(self)
|
884
|
+
|
885
|
+
def bodies(self):
|
886
|
+
r"""bodies(CollisionGroup self) -> Physics_Bodies_Body_Vector"""
|
887
|
+
return _SimulationSwig.CollisionGroup_bodies(self)
|
888
|
+
|
889
|
+
def geometries(self):
|
890
|
+
r"""geometries(CollisionGroup self) -> Physics_Charges_ContactGeometry_Vector"""
|
891
|
+
return _SimulationSwig.CollisionGroup_geometries(self)
|
892
|
+
|
893
|
+
def setDynamic(self, key, value):
|
894
|
+
r"""
|
895
|
+
setDynamic(CollisionGroup self, std::string const & key, Any value)
|
896
|
+
|
897
|
+
Parameters
|
898
|
+
----------
|
899
|
+
key: std::string const &
|
900
|
+
value: openplx::Core::Any &&
|
901
|
+
|
902
|
+
"""
|
903
|
+
return _SimulationSwig.CollisionGroup_setDynamic(self, key, value)
|
904
|
+
|
905
|
+
def getDynamic(self, key):
|
906
|
+
r"""
|
907
|
+
getDynamic(CollisionGroup self, std::string const & key) -> Any
|
908
|
+
|
909
|
+
Parameters
|
910
|
+
----------
|
911
|
+
key: std::string const &
|
912
|
+
|
913
|
+
"""
|
914
|
+
return _SimulationSwig.CollisionGroup_getDynamic(self, key)
|
915
|
+
|
916
|
+
def callDynamic(self, key, args):
|
917
|
+
r"""
|
918
|
+
callDynamic(CollisionGroup self, std::string const & key, AnyVector args) -> Any
|
919
|
+
|
920
|
+
Parameters
|
921
|
+
----------
|
922
|
+
key: std::string const &
|
923
|
+
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
924
|
+
|
925
|
+
"""
|
926
|
+
return _SimulationSwig.CollisionGroup_callDynamic(self, key, args)
|
927
|
+
|
928
|
+
def extractObjectFieldsTo(self, output):
|
929
|
+
r"""
|
930
|
+
extractObjectFieldsTo(CollisionGroup self, ObjectVector output)
|
931
|
+
|
932
|
+
Parameters
|
933
|
+
----------
|
934
|
+
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
935
|
+
|
936
|
+
"""
|
937
|
+
return _SimulationSwig.CollisionGroup_extractObjectFieldsTo(self, output)
|
938
|
+
|
939
|
+
def extractEntriesTo(self, output):
|
940
|
+
r"""
|
941
|
+
extractEntriesTo(CollisionGroup self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
942
|
+
|
943
|
+
Parameters
|
944
|
+
----------
|
945
|
+
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
946
|
+
|
947
|
+
"""
|
948
|
+
return _SimulationSwig.CollisionGroup_extractEntriesTo(self, output)
|
949
|
+
|
950
|
+
def triggerOnInit(self, context):
|
951
|
+
r"""
|
952
|
+
triggerOnInit(CollisionGroup self, openplx::RuntimeContext const & context)
|
953
|
+
|
954
|
+
Parameters
|
955
|
+
----------
|
956
|
+
context: openplx::RuntimeContext const &
|
957
|
+
|
958
|
+
"""
|
959
|
+
return _SimulationSwig.CollisionGroup_triggerOnInit(self, context)
|
960
|
+
__swig_destroy__ = _SimulationSwig.delete_CollisionGroup
|
961
|
+
|
962
|
+
# Register CollisionGroup in _SimulationSwig:
|
963
|
+
_SimulationSwig.CollisionGroup_swigregister(CollisionGroup)
|
964
|
+
|
965
|
+
class DisableCollisionPair(openplx.Core.Object):
|
966
|
+
r"""Proxy of C++ openplx::Simulation::DisableCollisionPair class."""
|
967
|
+
|
968
|
+
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
969
|
+
__repr__ = _swig_repr
|
970
|
+
|
971
|
+
def __init__(self):
|
972
|
+
r"""__init__(DisableCollisionPair self) -> DisableCollisionPair"""
|
973
|
+
_SimulationSwig.DisableCollisionPair_swiginit(self, _SimulationSwig.new_DisableCollisionPair())
|
974
|
+
|
975
|
+
def group1(self):
|
976
|
+
r"""group1(DisableCollisionPair self) -> std::shared_ptr< openplx::Simulation::CollisionGroup >"""
|
977
|
+
return _SimulationSwig.DisableCollisionPair_group1(self)
|
978
|
+
|
979
|
+
def group2(self):
|
980
|
+
r"""group2(DisableCollisionPair self) -> std::shared_ptr< openplx::Simulation::CollisionGroup >"""
|
981
|
+
return _SimulationSwig.DisableCollisionPair_group2(self)
|
982
|
+
|
983
|
+
def setDynamic(self, key, value):
|
984
|
+
r"""
|
985
|
+
setDynamic(DisableCollisionPair self, std::string const & key, Any value)
|
986
|
+
|
987
|
+
Parameters
|
988
|
+
----------
|
989
|
+
key: std::string const &
|
990
|
+
value: openplx::Core::Any &&
|
991
|
+
|
992
|
+
"""
|
993
|
+
return _SimulationSwig.DisableCollisionPair_setDynamic(self, key, value)
|
994
|
+
|
995
|
+
def getDynamic(self, key):
|
996
|
+
r"""
|
997
|
+
getDynamic(DisableCollisionPair self, std::string const & key) -> Any
|
998
|
+
|
999
|
+
Parameters
|
1000
|
+
----------
|
1001
|
+
key: std::string const &
|
1002
|
+
|
1003
|
+
"""
|
1004
|
+
return _SimulationSwig.DisableCollisionPair_getDynamic(self, key)
|
1005
|
+
|
1006
|
+
def callDynamic(self, key, args):
|
1007
|
+
r"""
|
1008
|
+
callDynamic(DisableCollisionPair self, std::string const & key, AnyVector args) -> Any
|
1009
|
+
|
1010
|
+
Parameters
|
1011
|
+
----------
|
1012
|
+
key: std::string const &
|
1013
|
+
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
1014
|
+
|
1015
|
+
"""
|
1016
|
+
return _SimulationSwig.DisableCollisionPair_callDynamic(self, key, args)
|
1017
|
+
|
1018
|
+
def extractObjectFieldsTo(self, output):
|
1019
|
+
r"""
|
1020
|
+
extractObjectFieldsTo(DisableCollisionPair self, ObjectVector output)
|
1021
|
+
|
1022
|
+
Parameters
|
1023
|
+
----------
|
1024
|
+
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
1025
|
+
|
1026
|
+
"""
|
1027
|
+
return _SimulationSwig.DisableCollisionPair_extractObjectFieldsTo(self, output)
|
1028
|
+
|
1029
|
+
def extractEntriesTo(self, output):
|
1030
|
+
r"""
|
1031
|
+
extractEntriesTo(DisableCollisionPair self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
1032
|
+
|
1033
|
+
Parameters
|
1034
|
+
----------
|
1035
|
+
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
1036
|
+
|
1037
|
+
"""
|
1038
|
+
return _SimulationSwig.DisableCollisionPair_extractEntriesTo(self, output)
|
1039
|
+
|
1040
|
+
def triggerOnInit(self, context):
|
1041
|
+
r"""
|
1042
|
+
triggerOnInit(DisableCollisionPair self, openplx::RuntimeContext const & context)
|
1043
|
+
|
1044
|
+
Parameters
|
1045
|
+
----------
|
1046
|
+
context: openplx::RuntimeContext const &
|
1047
|
+
|
1048
|
+
"""
|
1049
|
+
return _SimulationSwig.DisableCollisionPair_triggerOnInit(self, context)
|
1050
|
+
__swig_destroy__ = _SimulationSwig.delete_DisableCollisionPair
|
1051
|
+
|
1052
|
+
# Register DisableCollisionPair in _SimulationSwig:
|
1053
|
+
_SimulationSwig.DisableCollisionPair_swigregister(DisableCollisionPair)
|
1054
|
+
|
1055
|
+
|
1056
|
+
|