From bd230d437d6a28dac8d252d1c76f38440c669ce0 Mon Sep 17 00:00:00 2001 From: Jacob Kiers Date: Sat, 8 Jan 2022 01:33:32 +0100 Subject: [PATCH] Convert measurements into millimeters Signed-off-by: Jacob Kiers --- house/house.scad | 42 ++++++++++++++++++++++-------------------- 1 file changed, 22 insertions(+), 20 deletions(-) diff --git a/house/house.scad b/house/house.scad index 232c1d6..6471f6d 100644 --- a/house/house.scad +++ b/house/house.scad @@ -1,37 +1,39 @@ +// All measurements are in millimeters. + // Dimensions -office_jacob_length = 203; -office_jacob_width = 341; +office_jacob_length = 2030; +office_jacob_width = 3410; -bedroom_length = 206; -bedroom_width = 341; +bedroom_length = 2060; +bedroom_width = 3410; -frame_depth = 13.5; +frame_depth = 135; -hall_length = 261; -hall_length_extra_office_jacob = 124;// Hall to end of office +hall_length = 2610; +hall_length_extra_office_jacob = 1240;// Hall to end of office hall_length_full = hall_length + hall_length_extra_office_jacob; -hall_width = 97.5; +hall_width = 975; -livingroom_back_to_door_width = 341; -livingroom_door_to_frame_width = 96.5; -livingroom_doorframe_to_kitchen_width = 223.5; -livingroom_kitchen_to_front_threshold = 148; +livingroom_back_to_door_width = 3410; +livingroom_door_to_frame_width = 965; +livingroom_doorframe_to_kitchen_width = 2235; +livingroom_kitchen_to_front_threshold = 1480; livingroom_width = livingroom_back_to_door_width + livingroom_door_to_frame_width + frame_depth + livingroom_doorframe_to_kitchen_width + livingroom_kitchen_to_front_threshold ; -livingroom_length_kitchen = 343; -livingroom_length_back = 287; +livingroom_length_kitchen = 3430; +livingroom_length_back = 2870; -kitchen_width_bath_to_entrance = 45; +kitchen_width_bath_to_entrance = 450; kitchen_width = livingroom_kitchen_to_front_threshold + kitchen_width_bath_to_entrance; -kitchen_length = 162; +kitchen_length = 1620; -hall_to_bathroom_length = 87 + hall_length_extra_office_jacob; -bathroom_length = 146 + frame_depth; -bathroom_width = 158; //house_width - office_jacob_width - hall_width - kitchen_width; +hall_to_bathroom_length = 870 + hall_length_extra_office_jacob; +bathroom_length = 1460 + frame_depth; +bathroom_width = 1580; //house_width - office_jacob_width - hall_width - kitchen_width; -house_height = 266; +house_height = 2660; house_width = livingroom_width; house_length = hall_length_extra_office_jacob + hall_length + frame_depth + livingroom_length_kitchen