snapAngleEpsilon property

num get snapAngleEpsilon

Gets or sets the the closeness to a desired angle at which the angle is "snapped to".

The default value is 2 degrees, meaning that any angle within 2 degrees of a multiple of the #snapAngleMultiple automatically snaps to that multiple. Values are limited to half of the #snapAngleMultiple; such values restrict user selected angles only to exact multiples of #snapAngleMultiple -- no other angles between them. Setting this property does not raise any events.

Implementation

_i2.num get snapAngleEpsilon => _i4.getProperty(
      this,
      'snapAngleEpsilon',
    );
set snapAngleEpsilon (num value)

Implementation

set snapAngleEpsilon(_i2.num value) {
  _i4.setProperty(
    this,
    'snapAngleEpsilon',
    value,
  );
}