Package esys :: Package lsm :: Package vis :: Package core :: Module SphereExtractor' :: Class SphereExtractor
[hide private]
[frames] | no frames]

Class SphereExtractor

          object --+    
                   |    
Extractor'.Extractor --+
                       |
                      SphereExtractor
Known Subclasses:

Objects of this class can be used in conjunction with the esys.lsm.vis.core.GlyphData class for extracting sphere info from data-records.

Instance Methods [hide private]
 
__init__(self, radiusMap=<function <lambda> at 0x29f9c08>, centerMap=<function <lambda> at 0x29f9c80>, modifierMap=<function <lambda> at 0x29f9cf8>, radiusScale=1.0)
Constructs the extractor.
 
getCenter(self, dataRecord)
 
getModifier(self, dataRecord)
 
getRadius(self, dataRecord)
 
getRadiusScale(self)

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, radiusMap=<function <lambda> at 0x29f9c08>, centerMap=<function <lambda> at 0x29f9c80>, modifierMap=<function <lambda> at 0x29f9cf8>, radiusScale=1.0)
(Constructor)

 

Constructs the extractor.

Parameters:
  • radiusMap (callable) - A callable which accepts a single data-record argument and returns a radius (float) value.
  • centerMap (callable) - A callable which accepts a single data-record argument and returns a 3 float-element sequence (ie a 3D coordinate).
  • modifierMap (callable) - A callable which accepts a single data-record argument and returns an object modifier (or sequence of modifiers).
  • radiusScale (float) - Scaling factor applied to all sphere radii.
Overrides: object.__init__