Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $fn=128;
- union() // łączy w jedne obiekty w środku
- {
- translate( [0, 0, 1] ) // podnosi o 1mm w osi Z
- {
- 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
- {
- import( "test.svg" );
- }
- }
- translate( [-5, -25, 0 ] ) // przenosi x = -5, y = -25
- {
- 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
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement