VelocityOps
Extension methods for constructing Velocity values from num.
Properties
feetPerSecond extension no setter
Creates a Velocity of this value in feet per second.
Available on num, provided by the VelocityOps extension
Implementation
Velocity get feetPerSecond => Velocity.feetPerSecond(this);kilometersPerHour extension no setter
Creates a Velocity of this value in kilometers per hour.
Available on num, provided by the VelocityOps extension
Implementation
Velocity get kilometersPerHour => Velocity.kilometersPerHour(this);kilometersPerSecond extension no setter
Creates a Velocity of this value in kilometers per second.
Available on num, provided by the VelocityOps extension
Implementation
Velocity get kilometersPerSecond => Velocity.kilometersPerSecond(this);knots extension no setter
Creates a Velocity of this value in knots.
Available on num, provided by the VelocityOps extension
Implementation
Velocity get knots => Velocity.knots(this);metersPerSecond extension no setter
Creates a Velocity of this value in meters per second.
Available on num, provided by the VelocityOps extension
Implementation
Velocity get metersPerSecond => Velocity.metersPerSecond(this);millimetersPerSecond extension no setter
Creates a Velocity of this value in millimeters per second.
Available on num, provided by the VelocityOps extension
Implementation
Velocity get millimetersPerSecond => Velocity.millimetersPerSecond(this);usMilesPerHour extension no setter
Creates a Velocity of this value in US miles per hour.
Available on num, provided by the VelocityOps extension
Implementation
Velocity get usMilesPerHour => Velocity.usMilesPerHour(this);