epsilonDistance property
num
get
epsilonDistance
Gets or sets approximately how far a node must move in order for the iterations to continue. The default value is 1. The value must be larger than zero.
Implementation
_i2.num get epsilonDistance => _i4.getProperty(
this,
'epsilonDistance',
);
set
epsilonDistance
(num value)
Implementation
set epsilonDistance(_i2.num value) {
_i4.setProperty(
this,
'epsilonDistance',
value,
);
}