Pip-Boy inspired phone holder built around the PINE64 PinePhone
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
525 B

  1. // dependency: https://github.com/revarbat/BOSL
  2. include <BOSL/constants.scad>
  3. use <BOSL/transforms.scad>
  4. use <BOSL/shapes.scad>
  5. use <BOSL/masks.scad>
  6. use <BOSL/sliders.scad>
  7. use <specs_platform.scad>
  8. use <specs_strap.scad>
  9. use <strap_common.scad>
  10. module foreach_platform_strap_connector() {
  11. offset=get_platform_strap_connector_offset();
  12. for (i=[0:3]) {
  13. translate([((i%2*(-2)+1) * offset.x), -((round(i/2)%2*(-2)+1) * offset.y), offset.z])
  14. zrot(90 + (round(i/2)%2*180))
  15. children();
  16. }
  17. }