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.

33 lines
746 B

  1. /*
  2. export=0; // <-- prepend to the main file to activate the export
  3. */
  4. function is_not_export() = is_undef(export) || export == 0;
  5. function is_export() = !is_not_export();
  6. function is_model_strict(m) = is_export() && export == m;
  7. function is_model(m) = is_not_export() || export == m;
  8. MODEL_DEMO=0;
  9. // Harness
  10. MODEL_HARNESS_LEFT=101;
  11. MODEL_HARNESS_RIGHT=102;
  12. MODEL_HARNESS_BOTTOM=103;
  13. MODEL_HARNESS_BOTTOM_PIP=104;
  14. MODEL_HARNESS_TOP=105;
  15. MODEL_HARNESS_SLIDER_FRONT=106;
  16. MODEL_HARNESS_SLIDER_BACK=107;
  17. MODEL_HARNESS_BUTTONS=108;
  18. // Platform
  19. MODEL_PLATFORM_HARNESS=201;
  20. MODEL_PLATFORM_STRAP=202;
  21. // Strap
  22. MODEL_LINKS=301;
  23. MODEL_CLIP_A=302;
  24. MODEL_CLIP_B=303;
  25. MODEL_CLIP_RATCHETING=304;
  26. MODEL_CLIP_RATCHETING_A=305;
  27. MODEL_CLIP_RATCHETING_B=306;