correctly refer to the plate overhang as per edge

This commit is contained in:
Brian S. Stephan 2023-11-16 09:02:43 -06:00
parent e7a8fc42ed
commit 524273369b
Signed by: bss
GPG Key ID: 3DE06D3180895FCB
1 changed files with 3 additions and 3 deletions

View File

@ -67,9 +67,9 @@ top_plate_z = 5;
// how much the top plate x/y is expanded to overhang the frame
// note that this is relative to the top plate (so the wall is added back)
top_plate_overhang_amount = (frame_wall * 2) + 17;
overhang_top_plate_x = top_plate_x + top_plate_overhang_amount;
overhang_top_plate_y = top_plate_y + top_plate_overhang_amount;
top_plate_overhang_amount = 8.5;
overhang_top_plate_x = top_plate_x + (frame_wall * 2) + (top_plate_overhang_amount * 2);
overhang_top_plate_y = top_plate_y + (frame_wall * 2) + (top_plate_overhang_amount * 2);
plate_to_frame_point_x = (top_plate_x/2)-10;
plate_to_frame_point_y = (top_plate_y/2)-10;