rotationAxis property

Vector3 get rotationAxis

Implementation

Vector3 get rotationAxis => _rotationAxis;
set rotationAxis (Vector3 value)

Implementation

set rotationAxis(Vector3 value) {
  if (value != _rotationAxis) {
    _rotationAxis = value;

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