-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathrear_wing_2.scad
54 lines (50 loc) · 1.01 KB
/
rear_wing_2.scad
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
rotate([0,-90,0])
{
$fn=180;
difference(){
union(){
translate([2,41,0])
minkowski()
{
cube([32,15,.5]);
cylinder(r=2,h=.5);
}
translate([0,10,0])cube([32.5,32,1]);
}
translate([15,-1,-1])cube([25,22.5,3]);
translate([32.5,21.5,-1])cylinder(d=35,h=3);
}
translate([0,0,54])
difference(){
union(){
translate([2,41,0])
minkowski()
{
cube([32,15,.5]);
cylinder(r=2,h=.5);
}
translate([0,10,0])cube([32.5,32,1]);
}
translate([15,-1,-1])cube([25,22.5,3]);
translate([32.5,21.5,-1])cylinder(d=35,h=3);
}
translate([0,0,55])
rotate([0,180,0])
translate([-35,90,0])
difference(){
cylinder(r=50,h=55);
translate([0,0,-1])cylinder(r=49,h=57);
translate([-100,0,0])cube([200,200,200],center=true);
translate([135,0,0])cube([200,200,200],center=true);
translate([0,100,0])cube([200,200,200],center=true);
}
translate([0,10,0])
difference(){
cube([15,1,55]);
//translate([7.5,-1,5])rotate([-90,0,0])
// cylinder(d=3.5,h=4);
//translate([7.5,-1,50])rotate([-90,0,0])
// cylinder(d=3.5,h=4);
translate([-1,-1,12.5])cube([30,30,30]);
}
}