Guest User

Untitled

a guest
Oct 7th, 2024
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. Unit=1; // [1:in, 25.4:mm, 0.833:ft]
  2.  
  3. function width(w) = w * Unit;
  4.  
  5. Draw_Ruler();
  6.  
  7. module Draw_Ruler() {
  8. Draw_Rectangle();
  9. Draw_Ticks();
  10. }
  11.  
  12. module Draw_Rectangle() {
  13. square([width(10), 10], true);
  14. }
  15.  
  16. module Draw_Ticks() {}
Advertisement
Add Comment
Please, Sign In to add comment