Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Unit=1; // [1:in, 25.4:mm, 0.833:ft]
- function width(w) = w * Unit;
- Draw_Ruler();
- module Draw_Ruler() {
- Draw_Rectangle();
- Draw_Ticks();
- }
- module Draw_Rectangle() {
- square([width(10), 10], true);
- }
- module Draw_Ticks() {}
Advertisement
Add Comment
Please, Sign In to add comment