Parameters for the closest mid. More...
#include <tissue.h>
Public Member Functions | |
ClosestMidAlgoParams (const ClosestMidAlgoParams ©) | |
Copy constructor. | |
ClosestMidAlgoParams (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 mid.
Definition at line 226 of file tissue.h.
tissue::ClosestMidAlgoParams::ClosestMidAlgoParams | ( | double | cwm = 0 , |
|
bool | scwm = true | |||
) | [inline] |
Default and initialization constructor.
Definition at line 231 of file tissue.h.
00232 : CellPinchingParams() 00233 , cellWallMin(cwm) 00234 , strictCellWallMin(scwm) 00235 { }
tissue::ClosestMidAlgoParams::ClosestMidAlgoParams | ( | const ClosestMidAlgoParams & | copy | ) | [inline] |
Copy constructor.
Definition at line 240 of file tissue.h.
00241 : CellPinchingParams(copy) 00242 , cellWallMin(copy.cellWallMin) 00243 , strictCellWallMin(copy.strictCellWallMin) 00244 { }
Minimum size of a wall.
Definition at line 249 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 254 of file tissue.h.
Referenced by tissue::findDivisionPoints().