Skip to content

AngularVelocityOps

extension AngularVelocityOps on num

Extension methods for constructing AngularVelocity values from num.

Properties

degreesPerSecond extension no setter

AngularVelocity get degreesPerSecond

Creates an AngularVelocity of this value in degrees per second.

Available on num, provided by the AngularVelocityOps extension

Implementation
dart
AngularVelocity get degreesPerSecond => AngularVelocity.degreesPerSecond(this);

radiansPerHour extension no setter

AngularVelocity get radiansPerHour

Creates an AngularVelocity of this value in radians per hour.

Available on num, provided by the AngularVelocityOps extension

Implementation
dart
AngularVelocity get radiansPerHour => AngularVelocity.radiansPerHour(this);

radiansPerMinute extension no setter

AngularVelocity get radiansPerMinute

Creates an AngularVelocity of this value in radians per minute.

Available on num, provided by the AngularVelocityOps extension

Implementation
dart
AngularVelocity get radiansPerMinute => AngularVelocity.radiansPerMinute(this);

radiansPerSecond extension no setter

AngularVelocity get radiansPerSecond

Creates an AngularVelocity of this value in radians per second.

Available on num, provided by the AngularVelocityOps extension

Implementation
dart
AngularVelocity get radiansPerSecond => AngularVelocity.radiansPerSecond(this);

revolutionsPerSecond extension no setter

AngularVelocity get revolutionsPerSecond

Creates an AngularVelocity of this value in revolutions per second.

Available on num, provided by the AngularVelocityOps extension

Implementation
dart
AngularVelocity get revolutionsPerSecond => AngularVelocity.revolutionsPerSecond(this);