About 69 results
Open links in new tab
  1. Feet to Meter Converter in C# is broken? - Stack Overflow

    Jan 16, 2019 · Try meter = feet / 3.281m using just 3.281 tells the compiler to use a double while 3.281f tells it to use a float. Likewise, 3.281m tells it to use decimal.

  2. Introducing Unit Converter! Convert Studs into real units of ...

    Feb 11, 2024 · Please allow for reverse measurements, from like meters TO studs. If you press the swap button it swaps the conversion direction. Sorry if I didn’t make that clear.

  3. java - Conversion between feet and meters - Stack Overflow

    Conversion between feet and meters Asked 11 years, 2 months ago Modified 6 years, 10 months ago Viewed 4k times

  4. Studify - Easily convert studs to real world metrics - Roblox

    Jul 26, 2022 · About Studify is a Library with the aim of making it fast and simple to convert studs to real world metrics such as meters and inches and vice versa. It is an open source project on GitHub.

  5. How To Convert Studs To Real World Units - Roblox

    Aug 2, 2022 · How To Convert Studs To Real-World Units #1 How Can This Be Useful? There are many ways that converting studs to actual real-world units can be helpful. To not make this tutorial too long …

  6. How many studs is there in a meter - Building Support - Roblox

    Mar 10, 2018 · The default gravitational acceleration (196.2 studs/sec^2) would suggest that there are 20 studs in a meter, as it is precisely 20 times the gravitational acceleration on Earth’s surface in …

  7. python - I been asked to write a program that prompts the user for a ...

    Oct 16, 2014 · print("%0.3f meters is equal to %0.3f miles" %(meters, miles)) So my question is how proceed to continue to convert to feet and inches if this is correct to convert to miles.

  8. Converting real world measurements to studs - Roblox

    Jul 29, 2019 · I’m just wondering how people who build as their speciality as to how they convert real world measurements to studs when basing your builds off images. Personally, using the basis of a …

  9. Converting height in python: commas for feet and inches giving me a ...

    Feb 11, 2016 · So I'm working on a homework assignment dealing with converting height of a group of people form feet' and inches" to meters, and then averaging the entire groups height. Everything in …

  10. Java floating point math - (conversion for feet/meters)

    Mar 4, 2009 · private double convertMetersToFeet(double meters) { //function converts Feet to Meters. double toFeet = meters; toFeet = meters*3.2808; // official conversion rate of Meters to Feet return …