Home · Tools · Implementations · Manage · Register · Tutorials · About |
| | | |
Inch <-> Millimeter Converter
Endpoints
Contributed Clients What is this? Add / Edit / Delete Client No clients are currently listed Detailed Description Converts inches <-> mmUsage Notes The Converter interface provides a simple two-way
conversion between inches and millimeters.
* Performs the mathematical conversion to convert inches to
millimeters.
float inchToMM(float inches)
Example:
inches = 23
Returns (millimetres) = 584.2
* Performs the mathematical conversion to convert millimeters and inches.
float mmToInch(float millimeters)
Example:
millimeters = 584.2
Returns (inches) = 23.0 |