Parameters for the shortest wall algorithm. More...
#include <tissue.h>
Public Member Functions | |
ShortWallAlgoParams (const ShortWallAlgoParams ©) | |
Copy constructor. | |
ShortWallAlgoParams (double cwm=0, bool scwm=true, double cws=0.1, double d=0.1) | |
Default and initialization constructor. | |
Public Attributes | |
double | cellWallMin |
Minimum size of a wall. | |
double | cellWallSample |
Size of sampling to find the minimum wall size. | |
double | dx |
Precision required to consider a point in a segment. | |
bool | strictCellWallMin |
If true, the minimum size of a wall is strictly enforce, otherwise, it will not imply a change of division wall. |
Parameters for the shortest wall algorithm.
Definition at line 180 of file tissue.h.
tissue::ShortWallAlgoParams::ShortWallAlgoParams | ( | double | cwm = 0 , |
|
bool | scwm = true , |
|||
double | cws = 0.1 , |
|||
double | d = 0.1 | |||
) | [inline] |
Default and initialization constructor.
Definition at line 185 of file tissue.h.
00186 : CellPinchingParams() 00187 , cellWallMin(cwm) 00188 , strictCellWallMin(scwm) 00189 , cellWallSample(cws) 00190 , dx(d) 00191 { }
tissue::ShortWallAlgoParams::ShortWallAlgoParams | ( | const ShortWallAlgoParams & | copy | ) | [inline] |
Copy constructor.
Definition at line 196 of file tissue.h.
00197 : CellPinchingParams(copy) 00198 , cellWallMin(copy.cellWallMin) 00199 , strictCellWallMin(copy.strictCellWallMin) 00200 , cellWallSample(copy.cellWallSample) 00201 , dx(copy.dx) 00202 { }
Minimum size of a wall.
Definition at line 207 of file tissue.h.
Referenced by tissue::findDivisionPoints().
Size of sampling to find the minimum wall size.
Definition at line 216 of file tissue.h.
Referenced by tissue::findDivisionPoints().
Precision required to consider a point in a segment.
Definition at line 220 of file tissue.h.
Referenced by tissue::findDivisionPoints().
If true, the minimum size of a wall is strictly enforce, otherwise, it will not imply a change of division wall.
Definition at line 212 of file tissue.h.
Referenced by tissue::findDivisionPoints().