Convert from cubic inches to cubic decimeters, and vice versa
' Convert from cubic inches to cubic decimeters, and vice versa
Function CubicInchesToCubicCentimeters(ByVal cuInches As Double) As Double
Return cuInches * 16.387
End Function
Function CubicCentimetersToCubicInches(ByVal cuCent As Double) As Double
Return cuCent / 16.387
End Function