Why the Ruby script can‘t change the created file‘s measurement unit?

01_Street_Store.rb (2.3 KB)
Please help me to check(See the file uploaded,which is attached after the message):Why, when I define the measurement unit of the model created through a Ruby script as meters and the script runs normally without any errors, do I find that the custom model’s measurement unit is still set to the default inches instead of the meters I defined in the script when I open the saved skp model file?

Internally the Sketchup model database is always in inches. The options that you are changing only effect what a user sees on the screen.

but you may write your code this way

# 定义门口位置和尺寸
door_width = 1.0.m  # 门宽 (米)
door_height = 2.0.m # 门高 (米)
door_thickness = 0.2.m # 门的厚度 (米)

see also:

1 Like