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.

12 lines
217 B

  1. use <BOSL/shapes.scad>
  2. include <BOSL/constants.scad>
  3. module cubi(s, fillet=0, edges=EDGES_ALL) {
  4. if ($preview) {
  5. cube(s, center=true);
  6. } else {
  7. cuboid(s, fillet=fillet, edges=edges);
  8. }
  9. }