Converts a value from one unit of measurement to another
Supported Platforms: Windows and Mac OS
(cvunit value from-unit to-unit)
Type: Integer, Real, or List
The numeric value or point list (2D or 3D point) to be converted.
Type: String
The unit that value is being converted from.
Type: String
The unit that value is being converted to.
Type: Real, List, or nil
The converted value, if successful; otherwise nil, if either unit name is unknown (not found in the acad.unt file), or if the two units are incompatible (for example, trying to convert grams into years).
The from-unit and to-unit arguments can name any unit type found in the acad.unt file.
(cvunit 1 "minute" "second") 60.0 (cvunit 1 "gallon" "furlong") nil (cvunit 1.0 "inch" "cm") 2.54 (cvunit 1.0 "acre" "sq yard") 4840.0 (cvunit '(1.0 2.5) "ft" "in") (12.0 30.0) (cvunit '(1 2 3) "ft" "in") (12.0 24.0 36.0)