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.

14 lines
278 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. }
  10. function vec_sum(v, w) = [v.x + w.x, v.y + w.y, v.z + w.z];