Advertisement
wariat

Untitled

Feb 25th, 2023
438
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. $fn=128;
  2. union() // łączy w jedne obiekty w środku
  3. {
  4. translate( [0, 0, 1] ) // podnosi o 1mm w osi Z
  5. {
  6. linear_extrude(height = 1, center = false) // wyciąga w górę o 1mm zaczynając od Z=0 jeśli center=true to połowa będzie na ujemnych Z
  7. {
  8. import( "test.svg" );
  9. }
  10. }
  11.  
  12.  
  13. translate( [-5, -25, 0 ] ) // przenosi x = -5, y = -25
  14. {
  15. cube([70,40,1.1]); // prostopadłościan 70 × 40 × 1.1 to dodatkowe .1mm aby obiekty w siebie wlazły i na bank były jednym
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement