Parameters for the closest wall algorithm. More...
#include <tissue.h>
Public Member Functions | |
ClosestWallAlgoParams (const ClosestWallAlgoParams ©) | |
Copy constructor. | |
ClosestWallAlgoParams (double cwm=0, bool scwm=true) | |
Default and initialization constructor. | |
Public Attributes | |
double | cellWallMin |
Minimum size of a wall. | |
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 closest wall algorithm.
Definition at line 260 of file tissue.h.
tissue::ClosestWallAlgoParams::ClosestWallAlgoParams | ( | double | cwm = 0 , |
|
bool | scwm = true | |||
) | [inline] |
Default and initialization constructor.
Definition at line 265 of file tissue.h.
00266 : CellPinchingParams() 00267 , cellWallMin(cwm) 00268 , strictCellWallMin(scwm) 00269 { }
tissue::ClosestWallAlgoParams::ClosestWallAlgoParams | ( | const ClosestWallAlgoParams & | copy | ) | [inline] |
Copy constructor.
Definition at line 274 of file tissue.h.
00275 : CellPinchingParams(copy) 00276 , cellWallMin(copy.cellWallMin) 00277 , strictCellWallMin(copy.strictCellWallMin) 00278 { }
Minimum size of a wall.
Definition at line 283 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 288 of file tissue.h.
Referenced by tissue::findDivisionPoints().