Difference between revisions of "042D"
Jump to navigation
Jump to search
(Created page with '{{Icon|trilogy}} '''CONVERT_METRES_TO_FEET_INT''' <hr /> <onlyinclude>{{#ifeq:{{{transcludesection|opcode}}}|opcode| '''Description''' : Converts integer meters to feet '''Syntax…') |
m |
||
Line 21: | Line 21: | ||
== See also == | == See also == | ||
− | * [[0425]], converts | + | * [[0425]], converts floating-point values from meters to feet |
[[Category:OpCodes]][[Category:Math OpCodes]] | [[Category:OpCodes]][[Category:Math OpCodes]] |
Revision as of 11:35, 6 January 2012
Description
- Converts integer meters to feet
Syntax
- 042D: [var] = metric_to_imperial [int]
Parameter
- [var]
- Variable to store the converted value as integer
- [int]
- Integer value
Native analog
This opcode "converts" integer values from meters to feet. By "convert", this means multiplying the value by 3.3333333. The more precise conversion would be to multiply by 3.281. The output value does not round accordingly to traditional methods, i.e. inputting "2" will output "6" but inputting "3" will output "10".
Keywords
change, convert, integer, metres, metre, meter, foot, feet, metric, imperial
See also
- 0425, converts floating-point values from meters to feet