| 12345678910111213141516171819202122232425262728293031 |
- include <../assets/vesa.scad>
- $fn = 100;
- translate([0, 0, 0]) {
- vesa_connector_object(true);
- }
- hinge_move_x = (
- vesa_connector_length / 2
- + vesa_hinge_screw / 2
- + vesa_hinge_thickness
- );
- translate([hinge_move_x, 0, 0]) {
- rotate([90, 0, 270]) {
- vesa_wall_hinge_object();
- }
- }
- translate([-hinge_move_x, 0, 0]) {
- rotate([90, 0, 90]) {
- vesa_corner_hinge_object();
- }
- }
- translate([-hinge_move_x - vesa_hinge_full_height() * 1, 0, 0]) {
- rotate([90, 0, 90]) {
- vesa_plate_corner_object();
- }
- }
|