axis property

String? get axis

Implementation

String? get axis => _axis;
set axis (String? value)

Implementation

set axis(String? value) {
  if (value != _axis) {
    _axis = value;
    _plane.axis = value;
    _gizmo.axis = value;

    scope.dispatchEvent(Event(type: 'axis-changed', value: value));
    scope.dispatchEvent(_changeEvent);
  }
}