Skip to content

massiveinteractive/thx.unit

 
 

Repository files navigation

thx.unit

The library contains type definitions for several kind of units. They are defined as asbtract types to siplify their usage as much as possible.

(10 : Millimetre) * 100 == (1 : Metre);
// other example
var f = (27 : Celsius).toFahrenheit()

The following units are currently supported:

For now the library essentially helps with conversions and math operations. At some point derivative units might be introduced to make things more interesting.

Also notice that the types are automatically generated. If you want to contribute to the library make sure to make changes in the definitions. The code is generated using this generator.

The library has not been exhaustively tested, please pay attention to the correctness of the results you get.

Important. This library should be used with the consciousness that converting values and perform some operations on the values might result in loss of precision. The limitation come from the fact that the underlying type is a Float. Converting LightYears to Millimitres might not work as well as you expect!