Studify.Centimeters(studs)
converts the given studs and returns centimeters.
Formula: studs * 28
Studify.Centimeters_(cm)
converts the given centimeters and returns studs.
Formula: cm / 28
Studify.Meters(studs)
converts the given studs and returns meters.
Formula: studs * .28
Studify.Meters_(m)
converts the given meters and returns studs.
Formula: m / .28
Studify.Kilometers(studs)
converts the given studs and returns kilometers.
Formula: studs * .00028
Studify.Kilometers_(km)
converts the given kilometers and returns studs.
Formula: km / .00028
Studify.KilometersPerHour(studs)
converts the given studs and returns kilometers per hour.
Formula: (studs * .00028) * 3600
Studify.Meters_(kmh)
converts the given kilometers per hour and returns studs.
Formula: (kmh / .00028) / 3600
Studify.Inches(studs)
converts the given studs and returns inches.
Formula: studs * (28 / 2.54)
Studify.Inches_(inches)
converts the given inches and returns studs.
Formula: inches / (28 * 2.54)
Studify.Miles(studs)
converts the given studs and returns miles.
Formula: studs * (.00028 / 1.609344)
Studify.Meters_(miles)
converts the given miles and returns studs.
Formula: miles / (.00028 * 1.609344)
Studify.MilesPerHour(studs)
converts the given studs and returns meters.
Formula: studs * (.00028 / 1.609344) * 3600
Studify.MilesPerHour_(mph)
converts the given miles per hour and returns studs.
Formula: mph / (.00028 * 1.609344) / 3600