| 12345678910111213 |
- include <../assets/platform.scad>
- $fn = 100;
- translate([0, 0, -platform_support_height / 2 - platform_thickness / 2]) {
- rotate([0, 0, 90]) {
- platform_support_object();
- }
- }
- translate([0, platform_depth / 2 - platform_support_depth / 2, 0]) {
- platform_object();
- }
|