This file is indexed.

/usr/share/pyshared/openturns/geom.py is in python-openturns 1.2-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
# This file was automatically generated by SWIG (http://www.swig.org).
# Version 2.0.10
#
# Do not make changes to this file unless you know what you are doing--modify
# the SWIG interface file instead.


"""
Geometrical classes.
"""


from sys import version_info
if version_info >= (2,6,0):
    def swig_import_helper():
        from os.path import dirname
        import imp
        fp = None
        try:
            fp, pathname, description = imp.find_module('_geom', [dirname(__file__)])
        except ImportError:
            import _geom
            return _geom
        if fp is not None:
            try:
                _mod = imp.load_module('_geom', fp, pathname, description)
            finally:
                fp.close()
            return _mod
    _geom = swig_import_helper()
    del swig_import_helper
else:
    import _geom
del version_info
try:
    _swig_property = property
except NameError:
    pass # Python < 2.2 doesn't have 'property'.
def _swig_setattr_nondynamic(self,class_type,name,value,static=1):
    if (name == "thisown"): return self.this.own(value)
    if (name == "this"):
        if type(value).__name__ == 'SwigPyObject':
            self.__dict__[name] = value
            return
    method = class_type.__swig_setmethods__.get(name,None)
    if method: return method(self,value)
    if (not static):
        self.__dict__[name] = value
    else:
        raise AttributeError("You cannot add attributes to %s" % self)

def _swig_setattr(self,class_type,name,value):
    return _swig_setattr_nondynamic(self,class_type,name,value,0)

def _swig_getattr(self,class_type,name):
    if (name == "thisown"): return self.this.own()
    method = class_type.__swig_getmethods__.get(name,None)
    if method: return method(self)
    raise AttributeError(name)

def _swig_repr(self):
    try: strthis = "proxy of " + self.this.__repr__()
    except: strthis = ""
    return "<%s.%s; %s >" % (self.__class__.__module__, self.__class__.__name__, strthis,)

try:
    _object = object
    _newclass = 1
except AttributeError:
    class _object : pass
    _newclass = 0


class SwigPyIterator(_object):
    """Proxy of C++ swig::SwigPyIterator class"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, SwigPyIterator, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, SwigPyIterator, name)
    def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined - class is abstract")
    __repr__ = _swig_repr
    __swig_destroy__ = _geom.delete_SwigPyIterator
    __del__ = lambda self : None;
    def value(self):
        """value(SwigPyIterator self) -> PyObject *"""
        return _geom.SwigPyIterator_value(self)

    def incr(self, n=1):
        """
        incr(SwigPyIterator self, size_t n=1) -> SwigPyIterator
        incr(SwigPyIterator self) -> SwigPyIterator
        """
        return _geom.SwigPyIterator_incr(self, n)

    def decr(self, n=1):
        """
        decr(SwigPyIterator self, size_t n=1) -> SwigPyIterator
        decr(SwigPyIterator self) -> SwigPyIterator
        """
        return _geom.SwigPyIterator_decr(self, n)

    def distance(self, *args):
        """distance(SwigPyIterator self, SwigPyIterator x) -> ptrdiff_t"""
        return _geom.SwigPyIterator_distance(self, *args)

    def equal(self, *args):
        """equal(SwigPyIterator self, SwigPyIterator x) -> bool"""
        return _geom.SwigPyIterator_equal(self, *args)

    def copy(self):
        """copy(SwigPyIterator self) -> SwigPyIterator"""
        return _geom.SwigPyIterator_copy(self)

    def next(self):
        """next(SwigPyIterator self) -> PyObject *"""
        return _geom.SwigPyIterator_next(self)

    def __next__(self):
        """__next__(SwigPyIterator self) -> PyObject *"""
        return _geom.SwigPyIterator___next__(self)

    def previous(self):
        """previous(SwigPyIterator self) -> PyObject *"""
        return _geom.SwigPyIterator_previous(self)

    def advance(self, *args):
        """advance(SwigPyIterator self, ptrdiff_t n) -> SwigPyIterator"""
        return _geom.SwigPyIterator_advance(self, *args)

    def __eq__(self, *args):
        """__eq__(SwigPyIterator self, SwigPyIterator x) -> bool"""
        return _geom.SwigPyIterator___eq__(self, *args)

    def __ne__(self, *args):
        """__ne__(SwigPyIterator self, SwigPyIterator x) -> bool"""
        return _geom.SwigPyIterator___ne__(self, *args)

    def __iadd__(self, *args):
        """__iadd__(SwigPyIterator self, ptrdiff_t n) -> SwigPyIterator"""
        return _geom.SwigPyIterator___iadd__(self, *args)

    def __isub__(self, *args):
        """__isub__(SwigPyIterator self, ptrdiff_t n) -> SwigPyIterator"""
        return _geom.SwigPyIterator___isub__(self, *args)

    def __add__(self, *args):
        """__add__(SwigPyIterator self, ptrdiff_t n) -> SwigPyIterator"""
        return _geom.SwigPyIterator___add__(self, *args)

    def __sub__(self, *args):
        """
        __sub__(SwigPyIterator self, ptrdiff_t n) -> SwigPyIterator
        __sub__(SwigPyIterator self, SwigPyIterator x) -> ptrdiff_t
        """
        return _geom.SwigPyIterator___sub__(self, *args)

    def __iter__(self): return self
SwigPyIterator_swigregister = _geom.SwigPyIterator_swigregister
SwigPyIterator_swigregister(SwigPyIterator)

GCC_VERSION = _geom.GCC_VERSION
class TestFailed:
  """
  TestFailed is used to raise an uniform exception in tests
  """
  __type = "TestFailed"
  def __init__(self,reason=""):
    self.reason = reason
  def type(self):
    return TestFailed.__type
  def what(self):
    return self.reason
  def __str__(self):
    return TestFailed.__type + ": " + self.reason
  def __lshift__(self,ch):
    self.reason += ch
    return self

import openturns.common
import openturns.wrapper
import openturns.typ
import openturns.graph
class Mesh(openturns.typ.DomainImplementation):
    """Proxy of C++ OT::Mesh class"""
    __swig_setmethods__ = {}
    for _s in [openturns.typ.DomainImplementation]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, Mesh, name, value)
    __swig_getmethods__ = {}
    for _s in [openturns.typ.DomainImplementation]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, Mesh, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _geom.Mesh_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(Mesh self) -> OT::String"""
        return _geom.Mesh_getClassName(self)

    def isEmpty(self):
        """isEmpty(Mesh self) -> OT::Bool"""
        return _geom.Mesh_isEmpty(self)

    def isNumericallyEmpty(self):
        """isNumericallyEmpty(Mesh self) -> OT::Bool"""
        return _geom.Mesh_isNumericallyEmpty(self)

    def contains(self, *args):
        """contains(Mesh self, NumericalPoint point) -> OT::Bool"""
        return _geom.Mesh_contains(self, *args)

    def numericallyContains(self, *args):
        """numericallyContains(Mesh self, NumericalPoint point) -> OT::Bool"""
        return _geom.Mesh_numericallyContains(self, *args)

    def getNumericalVolume(self):
        """getNumericalVolume(Mesh self) -> OT::NumericalScalar"""
        return _geom.Mesh_getNumericalVolume(self)

    def __eq__(self, *args):
        """__eq__(Mesh self, Mesh rhs) -> OT::Bool"""
        return _geom.Mesh___eq__(self, *args)

    def isValid(self):
        """isValid(Mesh self) -> OT::Bool"""
        return _geom.Mesh_isValid(self)

    def buildSimplexMatrix(self, *args):
        """buildSimplexMatrix(Mesh self, OT::UnsignedLong const index) -> SquareMatrix"""
        return _geom.Mesh_buildSimplexMatrix(self, *args)

    def checkPointInSimplex(self, *args):
        """checkPointInSimplex(Mesh self, NumericalPoint point, OT::UnsignedLong const index) -> OT::Bool"""
        return _geom.Mesh_checkPointInSimplex(self, *args)

    def getVertices(self):
        """getVertices(Mesh self) -> NumericalSample"""
        return _geom.Mesh_getVertices(self)

    def setVertices(self, *args):
        """setVertices(Mesh self, NumericalSample vertices)"""
        return _geom.Mesh_setVertices(self, *args)

    def getVertex(self, *args):
        """getVertex(Mesh self, OT::UnsignedLong const index) -> NumericalPoint"""
        return _geom.Mesh_getVertex(self, *args)

    def setVertex(self, *args):
        """setVertex(Mesh self, OT::UnsignedLong const index, NumericalPoint vertex)"""
        return _geom.Mesh_setVertex(self, *args)

    def getSimplices(self):
        """getSimplices(Mesh self) -> OT::Mesh::IndicesCollection"""
        return _geom.Mesh_getSimplices(self)

    def setSimplices(self, *args):
        """setSimplices(Mesh self, OT::Mesh::IndicesCollection const & simplices)"""
        return _geom.Mesh_setSimplices(self, *args)

    def getSimplex(self, *args):
        """getSimplex(Mesh self, OT::UnsignedLong const index) -> Indices"""
        return _geom.Mesh_getSimplex(self, *args)

    def getVolume(self):
        """getVolume(Mesh self) -> OT::NumericalScalar"""
        return _geom.Mesh_getVolume(self)

    def computeSimplexVolume(self, *args):
        """computeSimplexVolume(Mesh self, OT::UnsignedLong const index) -> OT::NumericalScalar"""
        return _geom.Mesh_computeSimplexVolume(self, *args)

    def draw(self):
        """draw(Mesh self) -> Graph"""
        return _geom.Mesh_draw(self)

    def draw1D(self):
        """draw1D(Mesh self) -> Graph"""
        return _geom.Mesh_draw1D(self)

    def draw2D(self):
        """draw2D(Mesh self) -> Graph"""
        return _geom.Mesh_draw2D(self)

    def draw3D(self, *args):
        """
        draw3D(Mesh self, OT::Bool const drawEdge=True, SquareMatrix rotation=OT::IdentityMatrix(3), OT::Bool const shading=False, 
            OT::NumericalScalar const rho=1.0) -> Graph
        draw3D(Mesh self, OT::Bool const drawEdge=True, SquareMatrix rotation=OT::IdentityMatrix(3), OT::Bool const shading=False) -> Graph
        draw3D(Mesh self, OT::Bool const drawEdge=True, SquareMatrix rotation=OT::IdentityMatrix(3)) -> Graph
        draw3D(Mesh self, OT::Bool const drawEdge=True) -> Graph
        draw3D(Mesh self) -> Graph
        """
        return _geom.Mesh_draw3D(self, *args)

    def __repr__(self):
        """__repr__(Mesh self) -> OT::String"""
        return _geom.Mesh___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(Mesh self, OT::String const & offset="") -> OT::String
        __str__(Mesh self) -> OT::String
        """
        return _geom.Mesh___str__(self, offset)

    def ImportFromMSHFile(*args):
        """ImportFromMSHFile(OT::String const & fileName) -> Mesh"""
        return _geom.Mesh_ImportFromMSHFile(*args)

    if _newclass:ImportFromMSHFile = staticmethod(ImportFromMSHFile)
    __swig_getmethods__["ImportFromMSHFile"] = lambda x: ImportFromMSHFile
    def exportToVTKFile(self, *args):
        """exportToVTKFile(Mesh self, OT::String const & fileName)"""
        return _geom.Mesh_exportToVTKFile(self, *args)

    def __init__(self, *args): 
        """
        __init__(OT::Mesh self, OT::UnsignedLong const dimension=1) -> Mesh
        __init__(OT::Mesh self) -> Mesh
        __init__(OT::Mesh self, NumericalSample vertices, OT::Mesh::IndicesCollection const & simplices) -> Mesh
        __init__(OT::Mesh self, Mesh other) -> Mesh
        """
        this = _geom.new_Mesh(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _geom.delete_Mesh
    __del__ = lambda self : None;
Mesh_swigregister = _geom.Mesh_swigregister
Mesh_swigregister(Mesh)

def Mesh_GetClassName():
  """Mesh_GetClassName() -> OT::String"""
  return _geom.Mesh_GetClassName()

def Mesh_ImportFromMSHFile(*args):
  """Mesh_ImportFromMSHFile(OT::String const & fileName) -> Mesh"""
  return _geom.Mesh_ImportFromMSHFile(*args)

class DomainImplementationTypedInterfaceObject(openturns.common.InterfaceObject):
    """Proxy of C++ OT::TypedInterfaceObject<(OT::DomainImplementation)> class"""
    __swig_setmethods__ = {}
    for _s in [openturns.common.InterfaceObject]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, DomainImplementationTypedInterfaceObject, name, value)
    __swig_getmethods__ = {}
    for _s in [openturns.common.InterfaceObject]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, DomainImplementationTypedInterfaceObject, name)
    __repr__ = _swig_repr
    def __init__(self, *args): 
        """
        __init__(OT::TypedInterfaceObject<(OT::DomainImplementation)> self) -> DomainImplementationTypedInterfaceObject
        __init__(OT::TypedInterfaceObject<(OT::DomainImplementation)> self, DomainImplementationPointer impl) -> DomainImplementationTypedInterfaceObject
        """
        this = _geom.new_DomainImplementationTypedInterfaceObject(*args)
        try: self.this.append(this)
        except: self.this = this
    def getImplementation(self, *args):
        """
        getImplementation(DomainImplementationTypedInterfaceObject self) -> DomainImplementationPointer
        getImplementation(DomainImplementationTypedInterfaceObject self) -> DomainImplementationPointer
        """
        return _geom.DomainImplementationTypedInterfaceObject_getImplementation(self, *args)

    def getImplementationAsPersistentObject(self):
        """getImplementationAsPersistentObject(DomainImplementationTypedInterfaceObject self) -> PersistentObjectPointer"""
        return _geom.DomainImplementationTypedInterfaceObject_getImplementationAsPersistentObject(self)

    def setImplementationAsPersistentObject(self, *args):
        """setImplementationAsPersistentObject(DomainImplementationTypedInterfaceObject self, PersistentObjectPointer obj)"""
        return _geom.DomainImplementationTypedInterfaceObject_setImplementationAsPersistentObject(self, *args)

    def swap(self, *args):
        """swap(DomainImplementationTypedInterfaceObject self, DomainImplementationTypedInterfaceObject other)"""
        return _geom.DomainImplementationTypedInterfaceObject_swap(self, *args)

    def setName(self, *args):
        """setName(DomainImplementationTypedInterfaceObject self, OT::String const & name)"""
        return _geom.DomainImplementationTypedInterfaceObject_setName(self, *args)

    def getName(self):
        """getName(DomainImplementationTypedInterfaceObject self) -> OT::String"""
        return _geom.DomainImplementationTypedInterfaceObject_getName(self)

    def __eq__(self, *args):
        """__eq__(DomainImplementationTypedInterfaceObject self, DomainImplementationTypedInterfaceObject other) -> OT::Bool"""
        return _geom.DomainImplementationTypedInterfaceObject___eq__(self, *args)

    __swig_destroy__ = _geom.delete_DomainImplementationTypedInterfaceObject
    __del__ = lambda self : None;
DomainImplementationTypedInterfaceObject_swigregister = _geom.DomainImplementationTypedInterfaceObject_swigregister
DomainImplementationTypedInterfaceObject_swigregister(DomainImplementationTypedInterfaceObject)

class Domain(DomainImplementationTypedInterfaceObject):
    """Proxy of C++ OT::Domain class"""
    __swig_setmethods__ = {}
    for _s in [DomainImplementationTypedInterfaceObject]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, Domain, name, value)
    __swig_getmethods__ = {}
    for _s in [DomainImplementationTypedInterfaceObject]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, Domain, name)
    __repr__ = _swig_repr
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _geom.Domain_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(Domain self) -> OT::String"""
        return _geom.Domain_getClassName(self)

    def getDimension(self):
        """getDimension(Domain self) -> OT::UnsignedLong"""
        return _geom.Domain_getDimension(self)

    def contains(self, *args):
        """contains(Domain self, NumericalPoint point) -> OT::Bool"""
        return _geom.Domain_contains(self, *args)

    def __init__(self, *args): 
        """
        __init__(OT::Domain self) -> Domain
        __init__(OT::Domain self, DomainImplementation implementation) -> Domain
        __init__(OT::Domain self, NumericalPoint a, NumericalPoint b) -> Domain
        __init__(OT::Domain self, Domain other) -> Domain
        """
        this = _geom.new_Domain(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _geom.delete_Domain
    __del__ = lambda self : None;
Domain_swigregister = _geom.Domain_swigregister
Domain_swigregister(Domain)

def Domain_GetClassName():
  """Domain_GetClassName() -> OT::String"""
  return _geom.Domain_GetClassName()

# This file is compatible with both classic and new-style classes.