Package pyffi :: Package utils :: Module trianglestripifier :: Class Experiment
[hide private]
[frames] | no frames]

Class Experiment

source code

object --+
         |
        Experiment

A stripification experiment, essentially consisting of a set of adjacent strips.
Instance Methods [hide private]
 
__init__(self, start_vertex, start_face)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
build(self)
Build strips, starting from start_vertex and start_face.
source code
 
build_adjacent(self, strip, face_index)
Build strips adjacent to given strip, and add them to the experiment.
source code

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, start_vertex, start_face)
(Constructor)

source code 
x.__init__(...) initializes x; see help(type(x)) for signature
Overrides: object.__init__
(inherited documentation)

build_adjacent(self, strip, face_index)

source code 
Build strips adjacent to given strip, and add them to the experiment. This is a helper function used by build.