| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- include <../assets/platform.scad>
- $fn = 100;
- platform_mount_object();
- top_position_y
- = platform_height / 2
- + platform_thickness / 2;
- top_position_z
- = platform_depth / 2
- - platform_full_support_depth() / 2;
- translate([0, top_position_y, top_position_z]) {
- rotate([90, 0, 0]) {
- platform_top_object();
- }
- }
- side_position_x
- = platform_width / 2
- + platform_thickness / 2;
- side_position_z
- = platform_depth / 2
- - platform_full_support_depth() / 2;
- translate([side_position_x, 0, side_position_z]) {
- rotate([90, 0, 90]) {
- platform_side_object();
- }
- }
- translate([-side_position_x, 0, side_position_z]) {
- rotate([90, 0, 90]) {
- platform_side_object();
- }
- }
- platform_connector();
|