All Floats (without specified unit) are consistently treated as inch. Length is a subclass of Numeric that provides explicit unit conversions, including the string conversion that implicitely defaults to model units.
1.0.to_l creates a length object of 1 inch (internal unit of Length), and printing it to the console calls to_s which actually converts the internal unit to your locally set millimeters.
I am even wondering whether Geom::Point#distance_to_line → Float is an API Bug and should rather return a Length?
Sorry everyone, my mistake, while fiddling with distance_to_line I was sure it returned a Length instance (I was even sure I checked it). As a float it makes perfect sense to return 1.0 of course
Internally, all lengths in SketchUp are stored in inches. The Length class stores values in inches as well. A number of methods have been added to the Ruby Numeric class to do units conversion. … The setting for the Length format and Length unit can be retrieved from the model options by querying the “UnitsOptions” OptionsProvider for “LengthFormat” and “LengthUnit” respectively.
One of the best blog posts on lengths and units is Thomas Thomassen’s blog article:
I looked at the API doc, and indeed it is incorrect, the actual class of the return value is not specified, and it erroneously says it returns in model units.
So, nice find. This should be reported in the API stubs repo.