├── .gitignore ├── README.md ├── m5_internal.stl ├── .gitmodules ├── rumba_case_lid3.STL ├── rumbacase_notabs.STL ├── Extruder Bom (version 1).xlsx ├── m5_internal.scad ├── m6_internal.scad ├── documents └── PowerSupply-S-360-12.jpg ├── railmountcase.scad ├── _supports.ini ├── Makefile ├── logotype.scad ├── logoopenrail.scad ├── _styles.ini ├── README ├── _materials.ini ├── frame_extruder.scad ├── frame_top.scad ├── Autolevel ├── configuration.scad ├── Servo_mount.scad ├── Z_stop_servo_mount.scad └── Servos │ └── hitec_servos.scad ├── e3dmount ├── configuration.scad ├── mount_posts.scad ├── mountadapter.scad ├── mount_e3d.scad ├── effector_e3d.scad ├── mount_cap_e3d.scad ├── fan_mount.scad └── mountadapter.svg ├── glass_tab.scad ├── configuration.scad ├── endstop.scad ├── extrudermnt.scad ├── frame_motor.scad ├── _printers.ini ├── effector.scad ├── mnt_pwr_sw.scad ├── retractable.scad ├── extruder.scad ├── belt_tightener-v5.scad ├── carriage.scad ├── vertex.scad ├── glass_tab.stl ├── logotype.stl └── LICENSE /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_store 2 | 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | kosselg1 2 | ======== 3 | -------------------------------------------------------------------------------- /m5_internal.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennswest/kosselg1/HEAD/m5_internal.stl -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "MCAD"] 2 | path = MCAD 3 | url = https://github.com/elmom/MCAD 4 | -------------------------------------------------------------------------------- /rumba_case_lid3.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennswest/kosselg1/HEAD/rumba_case_lid3.STL -------------------------------------------------------------------------------- /rumbacase_notabs.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennswest/kosselg1/HEAD/rumbacase_notabs.STL -------------------------------------------------------------------------------- /Extruder Bom (version 1).xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennswest/kosselg1/HEAD/Extruder Bom (version 1).xlsx -------------------------------------------------------------------------------- /m5_internal.scad: -------------------------------------------------------------------------------- 1 | use ; 2 | 3 | metric_thread(diameter=5, pitch=0.8, length=8, internal=true); 4 | -------------------------------------------------------------------------------- /m6_internal.scad: -------------------------------------------------------------------------------- 1 | use ; 2 | 3 | metric_thread(diameter=6, pitch=0.8, length=8, internal=true); 4 | -------------------------------------------------------------------------------- /documents/PowerSupply-S-360-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennswest/kosselg1/HEAD/documents/PowerSupply-S-360-12.jpg -------------------------------------------------------------------------------- /railmountcase.scad: -------------------------------------------------------------------------------- 1 | include ; 2 | 3 | 4 | module rumbacase() { 5 | scale([1, 1, 1]) import("rumbacase_notabs.STL"); 6 | translate([15.5, 0, 15.5]) rotate([90, 0, 0]) 7 | cylinder(r=1.65, h=20, center=true); 8 | } 9 | 10 | -------------------------------------------------------------------------------- /_supports.ini: -------------------------------------------------------------------------------- 1 | 2 | [sample support] 3 | support_sheathe=0 4 | support_density=0 5 | support_inflate_mm=0 6 | support_gap_mm=0.5 7 | support_angle_deg=45 8 | support_z_max_mm=-1 9 | sheathe_z_max_mm=-1 10 | raft_mode=1 11 | prime_pillar_mode=0 12 | raft_inflate_mm=2 13 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | all: frame_top.stl frame_motor.stl carriage.stl effector.stl 2 | 3 | # Explicit wildcard expansion suppresses errors when no files are found. 4 | include $(wildcard *.deps) 5 | 6 | %.stl: %.scad 7 | openscad -m make -d $*.deps -o $@ $< 8 | 9 | # Replace tabs with spaces. 10 | %.tab: %.scad 11 | cp $< $@ 12 | expand $@ > $< 13 | -------------------------------------------------------------------------------- /logotype.scad: -------------------------------------------------------------------------------- 1 | // More Fontz! by polymaker http://www.thingiverse.com/thing:13677 2 | include ; 3 | 4 | // steps - the amount of detail, the higher the more detailed. 5 | // center - whether the output is centered or not 6 | // extra - extra distance between characters 7 | // height - height of extrusion, 0 for 2d 8 | Orbitron_Medium("G1", steps=2, center=true, extra=10, height=3); 9 | -------------------------------------------------------------------------------- /logoopenrail.scad: -------------------------------------------------------------------------------- 1 | // More Fontz! by polymaker http://www.thingiverse.com/thing:13677 2 | include ; 3 | 4 | // steps - the amount of detail, the higher the more detailed. 5 | // center - whether the output is centered or not 6 | // extra - extra distance between characters 7 | // height - height of extrusion, 0 for 2d 8 | Orbitron_Medium("OpenRail", steps=2, center=true, extra=10, height=5); 9 | -------------------------------------------------------------------------------- /_styles.ini: -------------------------------------------------------------------------------- 1 | 2 | [Default] 3 | layer_thickness_mm=0.2 4 | extrusion_width_mm=0.4 5 | num_loops=3 6 | skin_thickness_mm=1 7 | infill_extrusion_width=0.4 8 | infill_density_denominator=2 9 | stacked_layers=1 10 | use_destring=1 11 | loops_insideout=1 12 | infill_st_oct_rnd=1 13 | inset_surface_xy_mm=0 14 | 15 | [Prototyping] 16 | layer_thickness_mm=0.3 17 | extrusion_width_mm=0.5 18 | num_loops=3 19 | skin_thickness_mm=0.8 20 | infill_extrusion_width=0.5 21 | infill_density_denominator=2 22 | stacked_layers=1 23 | use_destring=1 24 | loops_insideout=0 25 | infill_st_oct_rnd=1 26 | inset_surface_xy_mm=0 27 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | The is the Kossel Mini G1 2 | By Glenn S West 3 | Derived from jcrochol/kossel 4 | 5 | I'm cleanup, and settup for using OpenRail, with 20x20 6 | and the Mini new integrated mounts. 7 | 8 | Kossel Mini G1 9 | 10 | Based on 20x20mm extrusions, with OpenBuilds OpenRail with Hardcoat, and Metal Wheels. 11 | Using a Rhumba Controller. 12 | 13 | ~ 14 | ~ 15 | ~ 16 | ~ 17 | 18 | -------------------------------------------------------------------------------- /_materials.ini: -------------------------------------------------------------------------------- 1 | 2 | [PLA] 3 | g_code_matl=3B204D617962652073657420736F6D65206D6174657269616C2D737065636966696320472D636F64653F 4 | fan_Z_mm=0 5 | fan_loops_percent=100 6 | fan_inside_percent=0 7 | fan_cool_percent=100 8 | temperature_C=160 9 | keep_warm_C=100 10 | first_layer_C=170 11 | bed_C=0 12 | sec_per_C_per_C=0.00964207 13 | flow_min_mm3_per_s=0.1 14 | flow_max_mm3_per_s=20 15 | destring_suck=2 16 | destring_prime=2 17 | destring_min_mm=3 18 | destring_trigger_mm=100 19 | destring_speed_mm_per_s=100 20 | Z_lift_mm=0.2 21 | min_layer_time_s=10 22 | wipe_mm=3 23 | cost_per_cm3=0 24 | flowrate_tweak=1 25 | fiber_dia_mm=1.75 26 | color=2684289024 27 | -------------------------------------------------------------------------------- /frame_extruder.scad: -------------------------------------------------------------------------------- 1 | include ; 2 | 3 | module frame_extruder() { 4 | difference() { 5 | union() { 6 | translate([0, 0, 5]) cube([15, 29, 10], center=true); 7 | } 8 | translate([0, 0, 26]) rotate([90, 0, 0]) 9 | cylinder(r=17.5, h=30, center=true, $fn=60); 10 | for (y = [-6.5, 6.5]) { 11 | translate([0, y, 0]) 12 | cube([20, 6, 4], center=true); 13 | } 14 | for (y = [-11, 0, 11]) { 15 | translate([0, y, 0]) 16 | cylinder(r=m3_wide_radius, h=20, center=true, $fn=12); 17 | translate([0, y, thickness]) 18 | # cylinder(r=3, h=10, $fn=24); 19 | } 20 | } 21 | } 22 | 23 | frame_extruder(); 24 | -------------------------------------------------------------------------------- /frame_top.scad: -------------------------------------------------------------------------------- 1 | include ; 2 | 3 | use ; 4 | 5 | $fn = 24; 6 | 7 | module frame_top() { 8 | difference() { 9 | vertex(extrusion, idler_offset=8, idler_space=14); 10 | // M4 bolt to support idler bearings. 11 | translate([0, 65, 0]) rotate([90, 0, 0]) 12 | cylinder(r=2, h=50); 13 | // Vertical belt tensioner. 14 | translate([0, 10, 0]) rotate([18, 0, 0]) union() { 15 | cylinder(r=m3_wide_radius, h=30, center=true); 16 | translate([0, -3, 8]) cube([2*m3_wide_radius, 6, 12], center=true); 17 | translate([0, 0, -3]) scale([1, 1, -1]) rotate([0, 0, 30]) 18 | cylinder(r1=m3_nut_radius, r2=m3_nut_radius+2, h=10, $fn=6); 19 | } 20 | } 21 | } 22 | 23 | translate([0, 0, 7.5]) frame_top(); 24 | -------------------------------------------------------------------------------- /Autolevel/configuration.scad: -------------------------------------------------------------------------------- 1 | // Increase this if your slicer or printer make holes too tight. 2 | extra_radius = 0.1; 3 | 4 | // OD = outside diameter, corner to corner. 5 | m3_nut_od = 6.1; 6 | m3_nut_radius = m3_nut_od/2 + 0.2 + extra_radius; 7 | 8 | // Major diameter of metric 3mm thread. 9 | m3_major = 2.85; 10 | m3_radius = m3_major/2 + extra_radius; 11 | m3_wide_radius = m3_major/2 + extra_radius + 0.2; 12 | 13 | // NEMA17 stepper motors. 14 | motor_shaft_diameter = 5; 15 | motor_shaft_radius = motor_shaft_diameter/2 + extra_radius; 16 | 17 | // Frame brackets. M3x8mm screws work best with 3.6 mm brackets. 18 | thickness = 3.6; 19 | 20 | // OpenBeam or Misumi. Currently only 15x15 mm, but there is a plan 21 | // to make models more parametric and allow 20x20 mm in the future. 22 | extrusion = 15; 23 | -------------------------------------------------------------------------------- /e3dmount/configuration.scad: -------------------------------------------------------------------------------- 1 | // Increase this if your slicer or printer make holes too tight. 2 | extra_radius = 0.1; 3 | 4 | // OD = outside diameter, corner to corner. 5 | m3_nut_od = 6.1; 6 | m3_nut_radius = m3_nut_od/2 + 0.2 + extra_radius; 7 | 8 | // Major diameter of metric 3mm thread. 9 | m3_major = 2.85; 10 | m3_radius = m3_major/2 + extra_radius; 11 | m3_wide_radius = m3_major/2 + extra_radius + 0.2; 12 | 13 | // NEMA17 stepper motors. 14 | motor_shaft_diameter = 5; 15 | motor_shaft_radius = motor_shaft_diameter/2 + extra_radius; 16 | 17 | // Frame brackets. M3x8mm screws work best with 3.6 mm brackets. 18 | thickness = 3.6; 19 | 20 | // OpenBeam or Misumi. Currently only 15x15 mm, but there is a plan 21 | // to make models more parametric and allow 20x20 mm in the future. 22 | extrusion = 15; 23 | -------------------------------------------------------------------------------- /e3dmount/mount_posts.scad: -------------------------------------------------------------------------------- 1 | include ; 2 | 3 | separation = 44; // Distance between ball joint mounting faces. 4 | offset = 22; // Same as DELTA_EFFECTOR_OFFSET in Marlin. 5 | mount_radius = 18.5; // Hotend mounting screws, standard would be 25mm. 6 | jhead_od_radius = 8; // Hole for the hotend (J-Head diameter is 16mm). 7 | jhead_id_radius = 6; 8 | height = 6; 9 | jhead_height=5; 10 | mount_height=32; 11 | 12 | 13 | difference() { 14 | union() { 15 | 16 | for (a = [0:120:359]) rotate([0, 0, a]) { 17 | translate([0, mount_radius,0])cylinder(r1=3,r2=2, h=mount_height/2, center=true, $fn=16); 18 | translate([0, mount_radius,16])cylinder(r1=2,r2=3, h=mount_height/2, center=true, $fn=16); 19 | } 20 | 21 | } 22 | 23 | for (a = [0:30:359]) rotate([0, 0, a]) { 24 | translate([0, mount_radius, 0]) cylinder(r=m3_wide_radius, h=2*mount_height+height, center=true, $fn=12); 25 | } 26 | 27 | } 28 | -------------------------------------------------------------------------------- /glass_tab.scad: -------------------------------------------------------------------------------- 1 | include ; 2 | 3 | sticky_width = 25.4; 4 | sticky_length = 25.4; 5 | sticky_offset = 8; // Distance from screw center to glass edge. 6 | 7 | // Make the round edge line up with the outside of OpenBeam. 8 | screw_offset = sticky_width/2 - 7.5; 9 | cube_length = sticky_length + sticky_offset - screw_offset; 10 | 11 | module glass_tab() { 12 | difference() { 13 | translate([0, screw_offset, 0]) union() { 14 | cylinder(r=sticky_width/2, h=thickness, center=true); 15 | translate([0, cube_length/2, 0]) 16 | cube([sticky_width, cube_length, thickness], center=true); 17 | } 18 | cylinder(r=m3_wide_radius, h=20, center=true, $fn=12); 19 | } 20 | // Scotch restickable tab for mounting. 21 | translate([0, sticky_length/2+sticky_offset, thickness/2]) % 22 | cube([sticky_width, sticky_length, 0.7], center=true); 23 | // Horizontal OpenBeam. 24 | translate([0, 0, (15+thickness)/-2]) % 25 | cube([100, 15, 15], center=true); 26 | } 27 | 28 | translate([0, 0, thickness/2]) glass_tab(); 29 | -------------------------------------------------------------------------------- /configuration.scad: -------------------------------------------------------------------------------- 1 | // Increase this if your slicer or printer make holes too tight. 2 | extra_radius = 0.1; 3 | 4 | // OD = outside diameter, corner to corner. 5 | m3_nut_od = 6.1; 6 | m3_nut_radius = m3_nut_od/2 + 0.2 + extra_radius; 7 | 8 | // Major diameter of metric 3mm thread. 9 | m3_major = 2.85; 10 | m3_radius = m3_major/2 + extra_radius; 11 | m3_wide_radius = m3_major/2 + extra_radius + 0.2; 12 | 13 | // OD = outside diameter, corner to corner. 14 | m5_nut_od = 8.1; 15 | m5_nut_radius = m5_nut_od/2 + 0.2 + extra_radius; 16 | 17 | m5_head_od = 10.5; 18 | m5_head_radius = m5_head_od/2 + 0.2 + extra_radius; 19 | 20 | // Major diameter of metric 5mm thread. 21 | m5_major = 4.85; 22 | m5_radius = m5_major/2 + extra_radius; 23 | m5_wide_radius = m5_major/2 + extra_radius + 0.2; 24 | 25 | // NEMA17 stepper motors. 26 | motor_shaft_diameter = 5; 27 | motor_shaft_radius = motor_shaft_diameter/2 + extra_radius; 28 | 29 | // Frame brackets. M3x8mm screws work best with 3.6 mm brackets. 30 | thickness = 3.6; 31 | 32 | // OpenBeam or Misumi. Currently only 15x15 mm, but there is a plan 33 | // to make models more parametric and allow 20x20 mm in the future. 34 | extrusion = 15; 35 | -------------------------------------------------------------------------------- /e3dmount/mountadapter.scad: -------------------------------------------------------------------------------- 1 | use <../MCAD/nuts_and_bolts.scad>; 2 | 3 | offset = 22; // Same as DELTA_EFFECTOR_OFFSET in Marlin. 4 | height=10; 5 | m3_radius=1.5; 6 | m3_nut_radius=1.7; 7 | m3_wide_radius=1.6; 8 | separation=44; 9 | mount_radius = 18.5; // Hotend mounting screws, standard would be 25mm. 10 | hotend_radius = 8; // Hole for the hotend (J-Head diameter is 16mm). 11 | mount_space=23/2; 12 | 13 | module bolt(thesize,thelength) 14 | { 15 | boltHole(thesize, length=thelength); 16 | %boltHole(thesize, length=thelength); 17 | } 18 | 19 | module adapter() 20 | { 21 | difference(){ 22 | cylinder(r=offset, h=height, center=true, $fn=100); 23 | cylinder(r=hotend_radius, h=height+1, center=true,$fn=100); 24 | translate([-11,-6, -2]) bolt(3, 20); 25 | translate([ 11,-6, -2]) bolt(3, 20); 26 | translate([ 0,-13,-2]) bolt(3, 20); 27 | translate([ 0, 13,-2]) bolt(3, 20); 28 | for (a = [0:120:359]) rotate([0, 0, a+90]) { 29 | translate([0, mount_radius, -17]) bolt(3,22); 30 | translate([0, mount_radius, height/2-2]) nutHole(3.1); 31 | translate([0, mount_radius, height/2-4]) nutHole(3.1); 32 | } 33 | } 34 | } 35 | 36 | //projection() translate([0,0,5]) adapter(); 37 | adapter(); -------------------------------------------------------------------------------- /endstop.scad: -------------------------------------------------------------------------------- 1 | include ; 2 | 3 | use ; 4 | 5 | thickness = 9; // 1mm thicker than linear rail. 6 | width = 15; // Same as vertical extrusion. 7 | height = 15; 8 | 9 | module endstop() { 10 | difference() { 11 | union() { 12 | cube([width, thickness, height], center=true); 13 | translate([0, 0, -height/4]) 14 | cube([width+2, thickness, height/2], center=true); 15 | translate([0, 2, 0]) 16 | cube([2.5, thickness, height], center=true); 17 | } 18 | translate([0, 0, 3]) rotate([90, 0, 0]) { 19 | cylinder(r=m3_wide_radius, h=20, center=true, $fn=12); 20 | translate([0, 0, 3.6-thickness/2]) { 21 | cylinder(r=3, h=10, $fn=24); 22 | translate([0, 5, 5]) 23 | cube([6, 10, 10], center=true); 24 | } 25 | translate([0, 0, -thickness/2]) scale([1, 1, -1]) 26 | cylinder(r1=m3_wide_radius, r2=7, h=4, $fn=24); 27 | } 28 | translate([0, -3-thickness/2, -2]) rotate([0, 180, 0]) { 29 | % microswitch(); 30 | for (x = [-9.5/2, 9.5/2]) { 31 | translate([x, 0, 0]) rotate([90, 0, 0]) 32 | cylinder(r=2.5/2, h=40, center=true, $fn=12); 33 | } 34 | } 35 | } 36 | } 37 | 38 | translate([0, 0, height/2]) endstop(); -------------------------------------------------------------------------------- /extrudermnt.scad: -------------------------------------------------------------------------------- 1 | include ; 2 | 3 | space = 43; // Between horizontal OpenBeam pieces. 4 | bracket_height = 12.5 + space/2 - 1; 5 | extruder_height = 30.5; 6 | extruder_width = 50.1; 7 | 8 | module extrudermnt() { 9 | difference() { 10 | translate([0, bracket_height/2-5, (10+thickness)/2]) minkowski() { 11 | cube([extruder_width+12, bracket_height-10, thickness], 12 | center=true); 13 | cylinder(r=5, h=10, center=true); 14 | } 15 | translate([0, 0, 10+thickness]) 16 | cube([extruder_width+30, 20, 20], 17 | center=true); 18 | translate([0, 7.5+space/2, 0]) # 19 | cube([extruder_width, extruder_height, 100], center=true); 20 | for (x = [-1, 1]) { 21 | translate([x*(extruder_width/2+5), 20, 9]) rotate([90, 0, 0]) 22 | cylinder(r=m3_wide_radius, h=40, center=true, $fn=12); 23 | translate([x*(extruder_width/2+5), 0, 9]) 24 | cylinder(r=m3_wide_radius, h=40, center=true, $fn=12); 25 | translate([x*(extruder_width/2+5), 20, 9]) rotate([90, 0, 0]) 26 | cylinder(r=m3_nut_radius, h=40, $fn=12+x*6); 27 | } 28 | translate([(extruder_width/2)-25.05, 20, 9]) rotate([90, 0, 0]) 29 | cylinder(r=m5_wide_radius, h=40, $fn=12+x*6); 30 | } 31 | } 32 | 33 | 34 | extrudermnt(); -------------------------------------------------------------------------------- /frame_motor.scad: -------------------------------------------------------------------------------- 1 | include ; 2 | 3 | use ; 4 | 5 | $fn = 24; 6 | motor_offset = 44; 7 | motor_length = 47; 8 | 9 | module frame_motor() { 10 | difference() { 11 | // No idler cones. 12 | vertex(3*extrusion, idler_offset=0, idler_space=100); 13 | // KOSSEL logotype. 14 | translate([20.5, -10, 0]) rotate([90, -90, 30]) 15 | scale([0.11, 0.11, 1]) import("logotype.stl"); 16 | // Motor cable paths. 17 | for (mirror = [-1, 1]) scale([mirror, 1, 1]) { 18 | translate([-35, 45, 0]) rotate([0, 0, -30]) 19 | # cube([4, 15, 15], center=true); 20 | translate([-6, 0, 0]) cylinder(r=2.5, h=40); 21 | translate([-11, 0, 0]) # cube([15, 4, 15], center=true); 22 | } 23 | translate([0, motor_offset, 0]) { 24 | // Motor shaft/pulley cutout. 25 | rotate([90, 0, 0]) cylinder(r=12, h=20, center=true, $fn=60); 26 | // NEMA 17 mounting screws. 27 | for (a = [0:90:359]) rotate([0, a, 0]) { 28 | translate([15.5, 0, 15.5]) rotate([90, 0, 0]) 29 | cylinder(r=1.65, h=20, center=true); 30 | } 31 | } 32 | } 33 | // NEMA 17 stepper motor. 34 | % translate([0, motor_offset + motor_length/2, 0]) intersection() { 35 | cube([42.2, motor_length, 42.2], center=true); 36 | rotate([0, 45, 0]) cube([52, motor_length, 52], center=true); 37 | } 38 | } 39 | 40 | translate([0, 0, 22.5]) frame_motor(); 41 | -------------------------------------------------------------------------------- /_printers.ini: -------------------------------------------------------------------------------- 1 | 2 | [Kossel] 3 | bed_STL_filename= 4 | extension=gcode 5 | cost_per_hour=10 6 | g_code_prefix=473238 7 | g_code_warm=3B2053656C6563742065787472756465722C207761726D2C207075726765202835442D7374796C65290A543C4558542B303E0A4D31303420533C54454D503E0A 8 | g_code_cool=3B20446573656C6563742065787472756465722C20636F6F6C696E6720646F776E202835442D7374796C65290A4D31303420533C54454D503E0A 9 | g_code_N_layers=3B2052652D686F6D65206576657279204E206C6179657273 10 | g_code_postfix=473238 11 | every_N_layers=0 12 | post_process=NULL 13 | num_extruders=1 14 | firmware_type=2 15 | add_comments=1 16 | fan_pwm=1 17 | add_m101_g10=0 18 | z_speed_mm_per_s=3.5 19 | z_settle_mm=0 20 | bed_size_x_mm=200 21 | bed_size_y_mm=200 22 | bed_size_z_mm=400 23 | bed_offset_x_mm=0 24 | bed_offset_y_mm=0 25 | bed_offset_z_mm=0 26 | bed_roughness_mm=0 27 | travel_speed_mm_per_s=500 28 | first_layer_speed_mm_per_s=25 29 | xy_accel_mm_per_s_per_s=1500 30 | lo_speed_perim_mm_per_s=4 31 | lo_speed_solid_mm_per_s=15 32 | lo_speed_sparse_mm_per_s=30 33 | hi_speed_perim_mm_per_s=15 34 | hi_speed_solid_mm_per_s=60 35 | hi_speed_sparse_mm_per_s=75 36 | ext_gain_1=1 37 | ext_material_1=0 38 | ext_axis_1=0 39 | ext_gain_2=1 40 | ext_material_2=0 41 | ext_axis_2=0 42 | ext_gain_3=1 43 | ext_material_3=0 44 | ext_axis_3=0 45 | model_ext=0 46 | support_ext=0 47 | support_body_ext=0 48 | raft_ext=0 49 | solid_loop_overlap_fraction=0.5 50 | -------------------------------------------------------------------------------- /e3dmount/mount_e3d.scad: -------------------------------------------------------------------------------- 1 | include ; 2 | 3 | separation = 44; // Distance between ball joint mounting faces. 4 | offset = 22; // Same as DELTA_EFFECTOR_OFFSET in Marlin. 5 | mount_radius = 18.5; // Hotend mounting screws, standard would be 25mm. 6 | jhead_od_radius = 8; // Hole for the hotend (J-Head diameter is 16mm). 7 | jhead_id_radius = 6; 8 | height = 6; 9 | jhead_height=5; 10 | mount_height=31; 11 | 12 | 13 | module mount() { 14 | difference() { 15 | union() { 16 | cylinder(r=offset-5, h=height, center=true, $fn=36); 17 | 18 | for (a = [0:120:359]) rotate([0, 0, a]) { 19 | translate([0, mount_radius, 0]) cylinder(r=8.5, h=height, center=true, $fn=36); 20 | } 21 | 22 | } 23 | 24 | 25 | for (a = [0:120:359]) rotate([0, 0, a]) { 26 | translate([0, mount_radius, 0]) cylinder(r=m3_wide_radius, h=2*mount_height+height, center=true, $fn=12); 27 | } 28 | 29 | translate([0, 0, -height/2])cylinder(r=jhead_id_radius, h=height, $fn=36); 30 | translate([0, 0, 2])cylinder(r=jhead_od_radius, h=1, $fn=36); 31 | 32 | rotate([0, 0, 60])translate([0,offset/2,1])cube ([jhead_id_radius*2,offset,jhead_height*2],center=true); 33 | rotate([0, 0, 60])translate([0,offset/2,2.5])cube ([jhead_od_radius*2,offset,1],center=true); 34 | 35 | 36 | for (a = [60:120:359]) rotate([0, 0, a]) { 37 | translate([0, offset, height/2]) cylinder(r=12, h=2*height, center=true, $fn=36); 38 | } 39 | 40 | } 41 | } 42 | 43 | translate([0, 0, height/2]) mount(); -------------------------------------------------------------------------------- /e3dmount/effector_e3d.scad: -------------------------------------------------------------------------------- 1 | include ; 2 | 3 | separation = 44; // Distance between ball joint mounting faces. 4 | offset = 22; // Same as DELTA_EFFECTOR_OFFSET in Marlin. 5 | mount_radius = 18.5; // Hotend mounting screws, standard would be 25mm. 6 | hotend_radius = 14; // Hole for the hotend (J-Head diameter is 16mm). 7 | height = 10; 8 | cone_r1 = 2.5; 9 | cone_r2 = 14; 10 | 11 | 12 | module effector() { 13 | difference() { 14 | union() { 15 | cylinder(r=offset-2, h=height, center=true, $fn=36); 16 | for (a = [60:120:359]) rotate([0, 0, a]) { 17 | rotate([0, 0, 30]) translate([offset-2, 0, 0]) 18 | cube([4, 12, height], center=true); 19 | for (s = [-1, 1]) scale([s, 1, 1]) { 20 | translate([0, offset, 0]) difference() { 21 | intersection() { 22 | cube([separation, 40, height], center=true); 23 | translate([0, -4, 0]) rotate([0, 90, 0]) 24 | cylinder(r=10, h=separation, center=true); 25 | translate([separation/2-7, 0, 0]) rotate([0, 90, 0]) 26 | cylinder(r1=cone_r2, r2=cone_r1, h=14, center=true, $fn=24); 27 | } 28 | rotate([0, 90, 0]) 29 | cylinder(r=m3_radius, h=separation+1, center=true, $fn=12); 30 | rotate([90, 0, 90]) 31 | cylinder(r=m3_nut_radius, h=separation-20, center=true, $fn=6); 32 | } 33 | } 34 | } 35 | } 36 | translate([0, 0, -height/2]) 37 | cylinder(r1=hotend_radius, r2=hotend_radius+1, h=height+1, $fn=36); 38 | for (a = [0:120:359]) rotate([0, 0, a]) { 39 | translate([0, mount_radius, 0]) 40 | cylinder(r=m3_wide_radius, h=2*height, center=true, $fn=12); 41 | } 42 | } 43 | } 44 | 45 | translate([0, 0, height/2]) effector(); 46 | -------------------------------------------------------------------------------- /effector.scad: -------------------------------------------------------------------------------- 1 | include ; 2 | 3 | separation = 40; // Distance between ball joint mounting faces. 4 | offset = 20; // Same as DELTA_EFFECTOR_OFFSET in Marlin. 5 | mount_radius = 12.5; // Hotend mounting screws, standard would be 25mm. 6 | hotend_radius = 8; // Hole for the hotend (J-Head diameter is 16mm). 7 | push_fit_height = 4; // Length of brass threaded into printed plastic. 8 | height = 8; 9 | cone_r1 = 2.5; 10 | cone_r2 = 14; 11 | 12 | module effector() { 13 | difference() { 14 | union() { 15 | cylinder(r=offset-2, h=height, center=true, $fn=36); 16 | for (a = [60:120:359]) rotate([0, 0, a]) { 17 | rotate([0, 0, 30]) translate([offset-2, 0, 0]) 18 | cube([10, 13, height], center=true); 19 | for (s = [-1, 1]) scale([s, 1, 1]) { 20 | translate([0, offset, 0]) difference() { 21 | intersection() { 22 | cube([separation, 40, height], center=true); 23 | translate([0, -4, 0]) rotate([0, 90, 0]) 24 | cylinder(r=10, h=separation, center=true); 25 | translate([separation/2-7, 0, 0]) rotate([0, 90, 0]) 26 | cylinder(r1=cone_r2, r2=cone_r1, h=14, center=true, $fn=24); 27 | } 28 | rotate([0, 90, 0]) 29 | cylinder(r=m3_radius, h=separation+1, center=true, $fn=12); 30 | rotate([90, 0, 90]) 31 | cylinder(r=m3_nut_radius, h=separation-24, center=true, $fn=6); 32 | } 33 | } 34 | } 35 | } 36 | translate([0, 0, push_fit_height-height/2]) 37 | cylinder(r=hotend_radius, h=height, $fn=36); 38 | translate([0, 0, -6]) # import("m5_internal.stl"); 39 | for (a = [0:60:359]) rotate([0, 0, a]) { 40 | translate([0, mount_radius, 0]) 41 | cylinder(r=m3_wide_radius, h=2*height, center=true, $fn=12); 42 | } 43 | } 44 | } 45 | 46 | translate([0, 0, height/2]) effector(); 47 | -------------------------------------------------------------------------------- /e3dmount/mount_cap_e3d.scad: -------------------------------------------------------------------------------- 1 | include ; 2 | include ; 3 | 4 | separation = 44; // Distance between ball joint mounting faces. 5 | offset = 22; // Same as DELTA_EFFECTOR_OFFSET in Marlin. 6 | mount_radius = 18.5; // Hotend mounting screws, standard would be 25mm. 7 | jhead_od_radius = 8; // Hole for the hotend (J-Head diameter is 16mm). 8 | jhead_id_radius = 6; 9 | height = 4; 10 | jhead_height=2.5; 11 | 12 | module fan_stud(){ 13 | difference(){ 14 | cube([40,10,8]); 15 | translate([0,4,0]) cube([40,6,4]); 16 | } 17 | } 18 | 19 | 20 | module A8452_mount() { 21 | difference(){ 22 | cube([16,27,4]); 23 | union() { 24 | translate([3,8,0]) cylinder(r=m3_wide_radius, h=2*height, center=true, $fn=12); 25 | translate([3,23,0]) cylinder(r=m3_wide_radius, h=2*height, center=true, $fn=12); 26 | } 27 | } 28 | } 29 | 30 | module mount_cap() { 31 | difference() { 32 | union() { 33 | // Mount for MMA8452 Module 34 | translate([-8,mount_radius+12.2,-2]) rotate(a=[90,0,0]) A8452_mount(); 35 | // Do a bracket to push the fan down a bit 36 | translate([-20,-17,-2]) rotate(a=[90,0,0]) fan_stud(); 37 | translate([-20,-21,8]) rotate(a=[90,0,0]) fan_mount(size=40,thick=4); 38 | cylinder(r=offset-5, h=height, center=true, $fn=36); 39 | 40 | for (a = [0:120:359]) rotate([0, 0, a]) { 41 | translate([0, mount_radius, 0]) cylinder(r=8.5, h=height, center=true, $fn=36); 42 | } 43 | 44 | } 45 | 46 | translate([0, 0, -height/2])cylinder(r=jhead_od_radius, h=height, $fn=36); 47 | translate([0, 0, -height/2+jhead_height])cylinder(r=jhead_od_radius, h=jhead_height, $fn=36); 48 | 49 | for (a = [0:120:359]) rotate([0, 0, a]) { 50 | translate([0, mount_radius, height/2]) cylinder(r=m3_wide_radius, h=2*height, center=true, $fn=12); 51 | } 52 | 53 | 54 | for (a = [60:120:359]) rotate([0, 0, a]) { 55 | translate([0, offset, height/2]) cylinder(r=12, h=2*height, center=true, $fn=36); 56 | } 57 | 58 | } 59 | } 60 | 61 | translate([0, 0, height/2]) mount_cap(); 62 | -------------------------------------------------------------------------------- /mnt_pwr_sw.scad: -------------------------------------------------------------------------------- 1 | /* 2 | 3D Power Supply Mount 3 | by Free Beachler of Terawatt Industries 4 | 5 | This work is licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License. To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/3.0/. 6 | */ 7 | 8 | //Round corner diameter 9 | round_corner_diameter = 8; 10 | 11 | m5_diameter = 5.5; 12 | m5_nut_diameter = 9.5; 13 | m5_cap_diameter = 8.5; 14 | m4_diameter = 4.5; 15 | m4_nut_diameter = 7.5; 16 | m3_diameter = 3.2; 17 | m3_nut_diameter = 5.3; 18 | 19 | power_mount(); 20 | // power supply 21 | //% color([0.1, 0.9, 0]) translate([0, 2.5, 10]) cube([85, 175, 70]); 22 | 23 | module power_mount() { 24 | difference() { 25 | union() { 26 | platform(); 27 | translate([0, 25 + 5 + 2.5, 17]) rotate([0, 0, 90]) mount_arm_m3(0, 0, 0, 0.1, 2); 28 | translate([0, 87.5 + 5 + 2.5, 17]) rotate([0, 0, 90]) mount_arm_m3(0, 0, 0, 0.1, 2); 29 | translate([0, 150 + 5 + 2.5, 17]) rotate([0, 0, 90]) mount_arm_m3(0, 0, 0, 0.1, 2); 30 | } 31 | translate([0, 2.5, 2.5]) mount_holes(); 32 | } 33 | } 34 | 35 | module platform() { 36 | difference() { 37 | // round some corners 38 | translate([0, 0, 5]) minkowski() { 39 | difference() { 40 | cube([90, 180, 25]); 41 | translate([10, -5.1, 10]) cube([75, 205.2, 70]); 42 | } 43 | cylinder(r=2.5, h=0.01, center=false, $fn=12); 44 | // rotate([0, 90, 0]) cylinder(r=2.5, h=0.01, center=false, $fn=12); 45 | } 46 | translate([0, 0, 10]) cube([87, 178, 75]); 47 | } 48 | // square the mount plate area 49 | translate([-5.5, -2.5, 5]) cube([5.5, 185, 25]); 50 | // translate([-9.5, 5, 0]) cube([97.5, 185, 5]); 51 | } 52 | 53 | module mount_holes() { 54 | for (i = [25, 87.5, 150]) { 55 | rotate([0, 90, 0]) translate([-10, i, -20]) cylinder(r=m5_diameter / 2, h=150, center = false, $fn=12); 56 | rotate([0, 90, 0]) translate([-10, i, -4.9]) cylinder(r=m5_cap_diameter / 2, h=10, center = false, $fn=12); 57 | } 58 | } 59 | 60 | 61 | module mount_arm_m3(h, w, d, tol, wt) { 62 | for (z = [d - wt - 5 + 3.5]) { 63 | // trapezoid block 64 | difference() { 65 | hull() { 66 | hull() { 67 | translate([h - 10, w + 4, z - 6]) cube([10, 5, 10], center = false); 68 | translate([h + 5, w, z + 6.5]) rotate([0, 90, 90]) cube([15, 15 + wt * 2, 5], center = false); 69 | } 70 | // rounded block 71 | translate([h - 12.5, w + wt + 1.5 + 3.5, z + 2.5]) rotate([90, 0, 90]) cylinder(r = 1, h = 15, center = false, $fn = 24); 72 | translate([h - 12.5, w + wt + 1.5 + 3.5, z - 7 + 2.5]) rotate([90, 0, 90]) cylinder(r = 1, h = 15, center = false, $fn = 24); 73 | } 74 | // M3 mount hole 75 | translate([h - 5, w * 2, z - 3.5 + 2.5]) rotate([90, 0, 0]) cylinder(r = 1.6, h = d * 2, center = false, $fn = 24); 76 | } 77 | } 78 | } 79 | 80 | -------------------------------------------------------------------------------- /retractable.scad: -------------------------------------------------------------------------------- 1 | include ; 2 | 3 | use ; 4 | 5 | height = 26; 6 | height2 = 26; 7 | tunnel = 2.4; 8 | face_offset = 4; 9 | 10 | module foot() { 11 | difference() { 12 | translate([12.5, 0, 0]) rotate([0, 0, -60]) 13 | translate([-12.5, 0, 1]) rotate([0, 0, -60]) union() { 14 | cylinder(r=5, h=2, center=true, $fn=24); 15 | translate([10, 0, 0]) 16 | cube([20, 10, 2], center=true); 17 | } 18 | translate([0, -10, 0]) 19 | cube([40, 20, 20], center=true); 20 | translate([12.5, 0, 0]) { 21 | // Space for bowden push fit connector. 22 | cylinder(r=6.49, h=3*height, center=true, $fn=32); 23 | for (a = [60:120:359]) { 24 | rotate([0, 0, a]) translate([-12.5, 0, 0]) 25 | cylinder(r=m3_wide_radius, h=20, center=true, $fn=12); 26 | } 27 | } 28 | } 29 | } 30 | 31 | module retractable() { 32 | difference() { 33 | union() { 34 | translate([0, 0, height/2]) 35 | cylinder(r=6, h=height, center=true, $fn=32); 36 | translate([0, -3, height/2]) 37 | cube([12, 6, height], center=true); 38 | // Lower part on the left. 39 | translate([-6, 0, height2/2]) 40 | cylinder(r=6, h=height2, center=true, $fn=32); 41 | translate([-3, 0, height2/2]) 42 | cube([6, 12, height2], center=true); 43 | translate([-3, -3, height2/2]) 44 | cube([18, 6, height2], center=true); 45 | // Feet for vertical M3 screw attachment. 46 | rotate([0, 0, 90]) { 47 | foot(); 48 | scale([1, -1, 1]) foot(); 49 | } 50 | } 51 | translate([-19, 0, height/2+6]) rotate([0, 15, 0]) 52 | cube([20, 20, height], center=true); 53 | cylinder(r=tunnel/2+extra_radius, h=3*height, center=true, $fn=12); 54 | translate([0, -6, height/2+12]) 55 | cube([tunnel-0.5, 12, height], center=true); 56 | rotate([0, 0, 30]) translate([0, -6, height/2+22]) 57 | cube([tunnel, 12, height], center=true); 58 | // Safety needle spring. 59 | translate([-4.5, 0, height-11]) rotate([90, 0, 0]) 60 | cylinder(r=2.5/2, h=40, center=true, $fn=12); 61 | translate([-4, 0, height-2]) rotate([90, 0, 0]) 62 | cylinder(r=1/2, h=40, center=true, $fn=12); 63 | // Effector screw heads. 64 | rotate([0, 0, 330]) translate([-12.5, 0, 2]) 65 | cylinder(r=4, h=30, $fn=24); 66 | // Flat front face. 67 | translate([0, -face_offset-10, height/2]) difference() { 68 | cube([30, 20, 2*height], center=true); 69 | } 70 | // Sub-miniature micro switch. 71 | translate([-2.5, -face_offset-3, 5]) { 72 | % microswitch(); 73 | for (x = [-9.5/2, 9.5/2]) { 74 | translate([x, 0, 0]) rotate([90, 0, 0]) 75 | cylinder(r=2.5/2, h=40, center=true, $fn=12); 76 | } 77 | } 78 | } 79 | } 80 | 81 | retractable(); 82 | -------------------------------------------------------------------------------- /extruder.scad: -------------------------------------------------------------------------------- 1 | // Based on "Makergear Filament drive goes Bowden" by Luke321 2 | // http://www.thingiverse.com/thing:63674 3 | 4 | include ; 5 | 6 | filament_offset = 22.5; 7 | 8 | module extruder() { 9 | rotate([90, 0, 0]) difference() { 10 | union() { 11 | //main cylinder 12 | translate([16,20,21]) rotate([90,0,0]) cylinder(h=20, r=17.5); 13 | 14 | //bearing mount 15 | translate([31,20,21]) rotate([90,0,0]) cylinder (h=20, r=8); 16 | 17 | //pushfit/pneufit mount 18 | translate([filament_offset, 6.5, 13]) 19 | cylinder(r=7.5, h=20, center=true, $fn=6); 20 | 21 | //filament support 22 | translate([21.75,6.5,34]) rotate([0,0,0]) cylinder (h=8, r=3, $fn=12); 23 | 24 | //clamp 25 | translate([20, 0, 28]) cube([13, 20, 14]); 26 | } 27 | 28 | //pulley opening 29 | translate([16,21,21]) rotate([90,0,0]){ 30 | cylinder (h=22, r=6.6); 31 | 32 | rotate([0,0,45]) { 33 | //translate([14,0,0]) cylinder(h=22, r=1.6, $fn=12); 34 | translate([0,14,0]) cylinder(h=22, r=1.6, $fn=12); 35 | translate([-14,0,0]) cylinder(h=22, r=1.6, $fn=12); 36 | translate([0,-14,0]) cylinder(h=22, r=1.6, $fn=12); 37 | } 38 | } 39 | 40 | //gearhead indentation 41 | translate([16,21,21]) rotate([90,0,0]) cylinder (h=3.35, r=11.25); 42 | 43 | //pulley hub indentation 44 | translate([16,20-2,21]) rotate([90,0,0]) cylinder (h=5.6, r=7); 45 | 46 | //bearing screws 47 | translate([31,21,21]) rotate([90,0,0]) cylinder (h=22, r=2.6, $fn=12); 48 | #translate([31,22,21]) rotate([90,30,0]) cylinder (h=8.01, r=4.7, $fn=6); 49 | 50 | //bearing 51 | difference() { 52 | union() { 53 | translate([31,9.5,21]) rotate([90,0,0]) cylinder (h=5.25, r=8.5); 54 | translate([31,9.5-5.25,21-8.25-2]) cube([20, 5.25, 18.5]); 55 | //opening between bearing and pulley 56 | translate([20,9.5-5.25,21-8.25+3.25+1]) cube([10, 5.25, 8]); 57 | } 58 | //removable supports 59 | for (z = [15:3:27]) { 60 | translate([36, 10, z]) # cube([20, 20, 0.5], center=true); 61 | } 62 | } 63 | 64 | //filament path chamfer 65 | translate([filament_offset,6.5,15]) rotate([0,0,0]) # 66 | cylinder(h=3, r1=0.5, r2=3, $fn=12); 67 | 68 | //filament path 69 | translate([filament_offset,6.5,-10]) rotate([0,0,0]) # 70 | cylinder(h=60, r=1.1, $fn=12); 71 | 72 | //pushfit/pneufit mount 73 | translate([filament_offset, 6.5, 0]) # cylinder(r=2.3, h=8, $fn=12); 74 | 75 | //clamp slit 76 | translate([25,-1,10]) cube([2, 22, 35]); 77 | //clamp nut 78 | translate([10.5,12,38]) rotate([0,90,0]) 79 | cylinder(h=11, r=m3_nut_radius, $fn=6); 80 | //clamp screw hole 81 | translate([15,12,38]) rotate([0,90,0]) 82 | cylinder(h=20, r=m3_wide_radius, $fn=12); 83 | } 84 | } 85 | 86 | extruder(); 87 | -------------------------------------------------------------------------------- /Autolevel/Servo_mount.scad: -------------------------------------------------------------------------------- 1 | ////////////////////////////////////////////////////////////////////////////////////// 2 | // Mount for a servo for autoleveling 3 | // modified servo_mount.scad 12/12/13 by zennmaster (thing:167440) 4 | // last modified: 12/14/13 5 | ///////////////////////////////////////////////////////////////////////////////////// 6 | include ; 7 | // From Auto Bed Level 8 | // http://www.thingiverse.com/thing:209384/#files 9 | separation = 44; // Distance between ball joint mounting faces. 10 | offset = 22; // Same as DELTA_EFFECTOR_OFFSET in Marlin. 11 | mount_radius = 18.5; // Hotend mounting screws, standard would be 25mm. 12 | hotend_radius = 14; // Hole for the hotend (J-Head diameter is 16mm). 13 | height = 4; 14 | cone_r1 = 2.5; 15 | cone_r2 = 14; 16 | 17 | servo_width=23.5; // Width of cutout for servo. 18 | servo_height=12.75; // Height of cutout for servo. 19 | servo_bolt_size=3; // Diameter of bolt shaft 20 | mount_bolt_size = 3.2; 21 | 22 | rotate([90,0,0]) // Lay it down for printing: 23 | 24 | union(){ 25 | difference(){ 26 | mainblock(); 27 | translate([0,0,3]) 28 | servo_hole(); 29 | } 30 | } 31 | 32 | module mainblock() { //Set up the "blank" part: 33 | difference() { 34 | block(); 35 | rotate([90,0,0]) 36 | translate([0,17.25,0]) 37 | cylinder (h=10,r=2, $fn=30, center = true); 38 | } 39 | } 40 | 41 | module block(){ 42 | // Main body: 43 | difference() { 44 | cube([55,6.35,25.5], true); 45 | translate(20,6.35,50) cube([20,6.35,20]); 46 | } 47 | 48 | // mount 49 | difference() { 50 | rotate([0,0,270]) translate([0,47,-10.5]) effector([45,38.5,6.35],true); 51 | //mounting screw holes 52 | translate([15,30,-20]) rotate([0,0,0])cylinder(h=20,r=mount_bolt_size/2,$fn=50); 53 | translate([-15,30,-20]) rotate([0,0,0])cylinder(h=20,r=mount_bolt_size/2,$fn=50); 54 | 55 | 56 | } 57 | } 58 | 59 | module servo_hole(){ // Make the opening for the servo. Adjust the variables above to fir your part. 60 | cube([servo_width,10,servo_height], true); 61 | translate([servo_width/2 + servo_bolt_size/2 +1 ,0,0]) 62 | rotate([90,0,0]) 63 | cylinder (h=10,r=servo_bolt_size/2, $fn=30, center = true); 64 | translate([-servo_width/2 - servo_bolt_size/2-1,0,0]) 65 | rotate([90,0,0]) 66 | cylinder (h=10,r=servo_bolt_size/2, $fn=30, center = true); 67 | } 68 | 69 | module effector() { 70 | difference() { 71 | union() { 72 | cylinder(r=offset-2, h=height, center=true, $fn=36); 73 | for (a = [60:120:359]) rotate([0, 0, a]) { 74 | rotate([0, 0, 30]) translate([offset-2, 0, 0]) 75 | cube([4, 12, height], center=true); 76 | } 77 | } 78 | translate([0, 0, -height/2]) 79 | cylinder(r1=hotend_radius, r2=hotend_radius+1, h=height+1, $fn=36); 80 | for (a = [0:120:359]) rotate([0, 0, a]) { 81 | translate([0, mount_radius, 0]) 82 | cylinder(r=m3_wide_radius, h=2*height, center=true, $fn=12); 83 | } 84 | } 85 | } 86 | -------------------------------------------------------------------------------- /Autolevel/Z_stop_servo_mount.scad: -------------------------------------------------------------------------------- 1 | ////////////////////////////////////////////////////////////////////////////////////////////////// 2 | // Created on 12/13/2013 by Stephen Castello 3 | // Last update: 12/21/2013 4 | ////////////////////////////////////////////////////////////////////////////////////////////////// 5 | // variables 6 | ////////////////////////////////////////////////////////////////////////////////////////////////// 7 | Z_Rod_dia=10; // diameter of Z rod 8 | Screw_dia=3.2; // clamp screw diameter 9 | Screw_Thread_dia=2.5; // screw hole diameter to make a 3mm threaded hole 10 | Switch_ht=15; // height of holder 11 | Switch_thk = 4; // thickness of holder 12 | Switch_hole_sep=22; // distance between holes for switch (19 for mechanical endstop v1.2) 13 | Switch_hole_offset = 10; // switch hole offest (mech endstop v1.2 doesn't have one) 14 | Nut_wrench_size = 5.5; // wrench size of nut 15 | Nut_depth = 2.3; // thickness of nut 16 | Nylok_depth = 4; // thickness of nylok nut 17 | Lever_wd = 12; // width of lever 18 | Lever_ht = 33; // lever length 19 | Servo_dia = 8.2; // outside diameter of servo lever 20 | ////////////////////////////////////////////////////////////////////////////////////////////////// 21 | // make the parts 22 | ////////////////////////////////////////////////////////////////////////////////////////////////// 23 | 24 | rotate([0,-90,0]) { 25 | switch_side(); 26 | lever(); 27 | } 28 | 29 | ////////////////////////////////////////////////////////////////////////////////////////////////// 30 | // modules for each part 31 | ////////////////////////////////////////////////////////////////////////////////////////////////// 32 | 33 | module switch_side(Switch_Only) { // riser for switch 34 | difference() { 35 | difference() { 36 | difference() { 37 | cube([Switch_thk,29,Switch_ht],false); 38 | // screw holes for switch 39 | rotate(a=[0,90,0]) { 40 | translate([-(Switch_ht-2.5), 4, 0]) { 41 | cylinder(h = 11, r = Screw_dia/2, center = false, $fn=100); 42 | } 43 | } 44 | rotate(a=[0,90,0]) { 45 | translate(v = [-(Switch_ht-2.5)+Switch_hole_offset, 4+Switch_hole_sep, 0]) { 46 | cylinder(h = 11, r = Screw_dia/2, center = false, $fn=100); 47 | } 48 | } 49 | } 50 | } 51 | } 52 | } 53 | 54 | ////////////////////////////////////////////////////////////////////////////////////////////////////////////// 55 | module lever() { // servo lever 56 | difference() { 57 | hull() { 58 | translate([0,0,15]) cube([Switch_thk,Lever_wd,Lever_ht-5],false); // lever with a rounded end 59 | translate([0,6,Lever_ht + 10.5]) rotate([0,90,0]) cylinder(h=Switch_thk,r=Lever_wd/2,$fn=50); 60 | } 61 | translate([2.6,3,15]) cube([Switch_thk/2,Lever_wd/2,Lever_ht-5],false); // groove 62 | translate([-5,6,Lever_ht + 10]) rotate([0,90,0]) cylinder(h=20,r=Servo_dia/2,$fn=50); // servo arm hole 63 | //rotate(a=[0,90,0]) { // repeated from switch_side 64 | // translate([-(Switch_ht-2.5), 4, 0]) { 65 | // cylinder(h = 11, r = Screw_dia/2, center = false, $fn=100); 66 | // } 67 | //} 68 | } 69 | translate([0,12,11]) rotate([45,0,0]) cube([Switch_thk,5,5],false); // gusset 70 | } 71 | 72 | //////////////////////end of Z stop servo mount.scad ///////////////////////////////////////////////// 73 | -------------------------------------------------------------------------------- /belt_tightener-v5.scad: -------------------------------------------------------------------------------- 1 | // belt tightener 2 | // (c) cahorton, 2013: CC attribution non-commercial 3 | 4 | // Description: adujstable belt tensioner with removable clips 5 | // Ok to change these 6 | 7 | // (default is sized for GT2) 8 | belt_width = 6; 9 | 10 | // (default is sized for GT2) 11 | belt_height = 1.6; 12 | 13 | // (height of belt when doubled so teeth interlock) 14 | belt_doubled_height = 2.8; 15 | 16 | // Minimum Wall Width 17 | wall = 1.6; 18 | 19 | // extra space in slits, etc 20 | gap = 1; 21 | 22 | // (default sized for a #6 screw) 23 | screw_radius = 2; 24 | 25 | // (default sized for a #6 nut) 26 | nut_radius = 4.2; 27 | 28 | // (how deep the block slots are) 29 | box_depth = 8; 30 | 31 | // extra space between clip and block, when snapped together 32 | clip_space = .8; 33 | 34 | // extra clearance for belt in the clip slot 35 | clip_gap = .5; 36 | 37 | // NOTE: more variables down in the clamp module 38 | 39 | // calculated values, don't change these 40 | swall = nut_radius-screw_radius+wall; // wall between screw and slots 41 | 42 | box_x = (belt_height * 2) + (wall * 3)+gap; 43 | box_y = belt_width + gap + (4*nut_radius)+4*wall; 44 | 45 | slot_y = 2*swall+2*screw_radius; 46 | 47 | echo("box_x = ", box_x); 48 | echo("box_y = ", box_y); 49 | echo("box_depth = ", box_depth); 50 | 51 | module body(){ 52 | difference(){ 53 | 54 | // body cube 55 | cube(size=[box_x, box_y, box_depth]); 56 | 57 | // slot 1 58 | translate([wall,slot_y,-1]) 59 | cube(size=[belt_height+gap/2, belt_width+gap, box_depth+2]); 60 | 61 | // slot 2 62 | translate([wall*2+belt_height+gap/2,slot_y,-1]) 63 | cube(size=[belt_height+gap/2, belt_width+gap, box_depth+2]); 64 | 65 | 66 | // screw hole 1 67 | translate([box_x/2,swall+screw_radius,-1]) 68 | cylinder(r=screw_radius, h=box_x+2, $fn=32); 69 | 70 | 71 | // screw hole 2 72 | translate([box_x/2,(box_y-(swall+screw_radius)),-1]) 73 | cylinder(r=screw_radius, h=box_x+2, $fn=32); 74 | 75 | // nut hole 1 76 | translate([-1,wall,box_depth-2]) 77 | cube(size=[box_x+2,nut_radius*2, 3]); 78 | 79 | // nut hole 2 80 | translate([-1,box_y-(wall+nut_radius*2),box_depth-2]) 81 | cube(size=[box_x+2,nut_radius*2, 3]); 82 | 83 | } 84 | } 85 | 86 | body(); 87 | 88 | translate([-20,0,0]) 89 | body(); 90 | 91 | 92 | translate([20,0,0]) 93 | clamp(); 94 | 95 | translate([20,20,0]) 96 | clamp(); 97 | 98 | 99 | module clamp(){ 100 | 101 | // OK to change these 102 | clip_gap = .5; 103 | width = 4; 104 | 105 | // Calculated values, don't change these 106 | bw = belt_width; 107 | bx=bw+clip_gap+4*wall; 108 | by = width; 109 | bz= box_x+2*wall; 110 | 111 | difference(){ 112 | union(){ 113 | //clamp body 114 | cube(size=[bx,by,bz]); 115 | 116 | // hook bridge 117 | cube(size=[bx,clip_space+box_depth+wall+width, 2*wall]); 118 | 119 | // hook 120 | translate([0,clip_space+box_depth+width,wall]) 121 | cube(size=[bx,wall,3]); 122 | 123 | } 124 | //hole for belt 125 | translate([2*wall,-1,box_x/2+2*wall-belt_doubled_height/2]) 126 | cube(size=[bw+clip_gap,width+2,belt_doubled_height+clip_gap]); 127 | 128 | } 129 | } 130 | -------------------------------------------------------------------------------- /carriage.scad: -------------------------------------------------------------------------------- 1 | include ; 2 | 3 | separation = 40; 4 | thickness = 6; 5 | 6 | horn_thickness = 13; 7 | horn_x = 8; 8 | 9 | belt_width = 5; 10 | belt_x = 5.6; 11 | belt_z = 7; 12 | 13 | module carriage() { 14 | // Timing belt (up and down). 15 | translate([-belt_x, 0, belt_z + belt_width/2]) % 16 | cube([1.7, 100, belt_width], center=true); 17 | translate([belt_x, 0, belt_z + belt_width/2]) % 18 | cube([1.7, 100, belt_width], center=true); 19 | difference() { 20 | union() { 21 | // base. 22 | translate([0, 0, -1]) 23 | cube([60, 60, thickness/2], center=true); 24 | 25 | // Main body. 26 | translate([0, 4, thickness/2]) 27 | cube([27, 40, thickness], center=true); 28 | // Ball joint mount horns. 29 | for (x = [-1, 1]) { 30 | scale([x, 1, 1]) intersection() { 31 | translate([0, 15, horn_thickness/2]) 32 | cube([separation, 18, horn_thickness], center=true); 33 | translate([horn_x, 16, horn_thickness/2]) rotate([0, 90, 0]) 34 | cylinder(r1=14, r2=2.5, h=separation/2-horn_x); 35 | } 36 | 37 | } 38 | // Logo 39 | translate([0, 24, 0]) rotate([0, 0, 0]) 40 | scale([0.11, 0.11, .7]) import("logotype.stl"); 41 | translate([0, -28.5, 0]) rotate([0, 0, 0]) 42 | scale([0.08, 0.08, .7]) import("logoopenrail.stl"); 43 | // Belt clamps. 44 | difference() { 45 | union() { 46 | translate([6.5, -2.5, horn_thickness/2+1]) 47 | cube([14, 7, horn_thickness-2], center=true); 48 | translate([10.75, 2.5, horn_thickness/2+1]) 49 | cube([5.5, 16, horn_thickness-2], center=true); 50 | } 51 | // Avoid touching diagonal push rods (carbon tube). 52 | translate([20, -10, 12.5]) rotate([35, 35, 30]) 53 | cube([40, 40, 20], center=true); 54 | } 55 | for (y = [-12, 7]) { 56 | translate([1.25, y, horn_thickness/2+1]) 57 | cube([7, 8, horn_thickness-2], center=true); 58 | } 59 | } 60 | 61 | // Screws for linear slider. 62 | 63 | translate([22, 0, thickness]) 64 | cylinder(r=m3_wide_radius, h=30, center=true, $fn=12); 65 | translate([-22, 0, thickness]) 66 | cylinder(r=m3_wide_radius, h=30, center=true, $fn=12); 67 | translate([0, -22, thickness]) 68 | cylinder(r=m3_wide_radius, h=30, center=true, $fn=12); 69 | 70 | 71 | 72 | translate([22, -22, thickness]) 73 | cylinder(r=m5_head_radius, h=30, center=true, $fn=12); 74 | translate([-22, 22, thickness]) 75 | cylinder(r=m5_head_radius, h=30, center=true, $fn=12); 76 | translate([22, 22, thickness]) 77 | cylinder(r=m5_head_radius, h=30, center=true, $fn=12); 78 | translate([-22, -22, thickness]) 79 | cylinder(r=m5_head_radius, h=30, center=true, $fn=12); 80 | 81 | // Screws for ball joints. 82 | translate([0, 16, horn_thickness/2]) rotate([0, 90, 0]) # 83 | cylinder(r=m3_wide_radius, h=60, center=true, $fn=12); 84 | // Lock nuts for ball joints. 85 | for (x = [-1, 1]) { 86 | scale([x, 1, 1]) intersection() { 87 | translate([horn_x, 16, horn_thickness/2]) rotate([90, 0, -90]) 88 | cylinder(r1=m3_nut_radius, r2=m3_nut_radius+0.5, h=8, 89 | center=true, $fn=6); 90 | } 91 | } 92 | } 93 | } 94 | 95 | carriage(); 96 | -------------------------------------------------------------------------------- /vertex.scad: -------------------------------------------------------------------------------- 1 | include ; 2 | 3 | $fn = 24; 4 | roundness = 6; 5 | 6 | module extrusion_cutout(h, extra) { 7 | difference() { 8 | cube([extrusion+extra, extrusion+extra, h], center=true); 9 | for (a = [0:90:359]) rotate([0, 0, a]) { 10 | translate([extrusion/2, 0, 0]) 11 | cube([6, 2.5, h+1], center=true); 12 | } 13 | } 14 | } 15 | 16 | module screw_socket() { 17 | cylinder(r=m3_wide_radius, h=20, center=true); 18 | translate([0, 0, 3.8]) cylinder(r=3.5, h=5); 19 | } 20 | 21 | module screw_socket_cone() { 22 | union() { 23 | screw_socket(); 24 | scale([1, 1, -1]) cylinder(r1=4, r2=7, h=4); 25 | } 26 | } 27 | 28 | module vertex(height, idler_offset, idler_space) { 29 | union() { 30 | // Pads to improve print bed adhesion for slim ends. 31 | translate([-37.5, 52.2, -height/2]) cylinder(r=8, h=0.5); 32 | translate([37.5, 52.2, -height/2]) cylinder(r=8, h=0.5); 33 | difference() { 34 | union() { 35 | intersection() { 36 | translate([0, 22, 0]) 37 | cylinder(r=36, h=height, center=true, $fn=60); 38 | translate([0, -37, 0]) rotate([0, 0, 30]) 39 | cylinder(r=50, h=height+1, center=true, $fn=6); 40 | } 41 | translate([0, 38, 0]) intersection() { 42 | rotate([0, 0, -90]) 43 | cylinder(r=55, h=height, center=true, $fn=3); 44 | translate([0, 10, 0]) 45 | cube([100, 100, 2*height], center=true); 46 | translate([0, -10, 0]) rotate([0, 0, 30]) 47 | cylinder(r=55, h=height+1, center=true, $fn=6); 48 | } 49 | } 50 | difference() { 51 | translate([0, 58, 0]) minkowski() { 52 | intersection() { 53 | rotate([0, 0, -90]) 54 | cylinder(r=55, h=height, center=true, $fn=3); 55 | translate([0, -32, 0]) 56 | cube([100, 16, 2*height], center=true); 57 | } 58 | cylinder(r=roundness, h=1, center=true); 59 | } 60 | // Idler support cones. 61 | translate([0, 26+idler_offset-30, 0]) rotate([-90, 0, 0]) 62 | cylinder(r1=30, r2=3, h=30-idler_space/2); 63 | translate([0, 26+idler_offset+30, 0]) rotate([90, 0, 0]) 64 | cylinder(r1=30, r2=3, h=30-idler_space/2); 65 | } 66 | translate([0, 58, 0]) minkowski() { 67 | intersection() { 68 | rotate([0, 0, -90]) 69 | cylinder(r=55, h=height, center=true, $fn=3); 70 | translate([0, 7, 0]) 71 | cube([100, 30, 2*height], center=true); 72 | } 73 | cylinder(r=roundness, h=1, center=true); 74 | } 75 | extrusion_cutout(height+10, 2*extra_radius); 76 | for (z = [0:30:height]) { 77 | translate([0, -7.5-extra_radius, z+7.5-height/2]) rotate([90, 0, 0]) 78 | screw_socket_cone(); 79 | for (a = [-1, 1]) { 80 | rotate([0, 0, 30*a]) translate([-16*a, 111, z+7.5-height/2]) { 81 | // % rotate([90, 0, 0]) extrusion_cutout(200, 0); 82 | // Screw sockets. 83 | for (y = [-88, -44]) { 84 | translate([a*7.5, y, 0]) rotate([0, a*90, 0]) screw_socket(); 85 | } 86 | // Nut tunnels. 87 | for (y = [0:4]) { 88 | translate([0, -100-y, 3]) 89 | rotate([0, 0, -a*30]) cylinder(r=4, h=16, $fn=6); 90 | translate([0, -100-y, -3]) scale([1, 1, -1]) 91 | rotate([0, 0, a*30]) cylinder(r=4, h=16, $fn=6); 92 | } 93 | } 94 | } 95 | } 96 | } 97 | } 98 | } 99 | 100 | translate([0, 0, 7.5]) vertex(15, idler_offset=0, idler_space=10); 101 | -------------------------------------------------------------------------------- /e3dmount/fan_mount.scad: -------------------------------------------------------------------------------- 1 | /* 2 | OPENSCAD Library file by the DoomMeister 3 | Mounting surround for small DC fans (25 - 120mm) 4 | 5 | Data taken from various places around the internet. 6 | http://www.qwikflow.com/dc_fans.html 7 | 8 | //Released under the terms of the GNU GPL v3.0 9 | This program is free software: you can redistribute it and/or modify 10 | it under the terms of the GNU General Public License as published by 11 | the Free Software Foundation, either version 3 of the License, or 12 | (at your option) any later version. 13 | 14 | This program is distributed in the hope that it will be useful, 15 | but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | GNU General Public License for more details. 18 | 19 | You should have received a copy of the GNU General Public License 20 | along with this program. If not, see . 21 | */ 22 | 23 | //uncomment this for example 24 | //fan_mount(size=60,thick=3); 25 | 26 | module fan_mount(size=40,thick = 4) 27 | { 28 | if(size == 25) 29 | { 30 | _fan_mount( 31 | fan_size = 25, 32 | fan_mounting_pitch = 20, 33 | fan_m_hole_dia = 3, 34 | holder_thickness = thick 35 | ); 36 | } 37 | if(size == 30) 38 | { 39 | _fan_mount( 40 | fan_size = 30, 41 | fan_mounting_pitch = 24, 42 | fan_m_hole_dia = 3, 43 | holder_thickness = thick 44 | ); 45 | } 46 | 47 | if(size == 40) 48 | { 49 | _fan_mount( 50 | fan_size = 40, 51 | fan_mounting_pitch = 32, 52 | fan_m_hole_dia = 3.5, 53 | holder_thickness = thick 54 | ); 55 | } 56 | if(size == 45) 57 | { 58 | _fan_mount( 59 | fan_size = 45, 60 | fan_mounting_pitch = 37, 61 | fan_m_hole_dia = 4.3, 62 | holder_thickness = thick 63 | ); 64 | } 65 | if(size == 60) 66 | { 67 | _fan_mount( 68 | fan_size = 60, 69 | fan_mounting_pitch = 50, 70 | fan_m_hole_dia = 4.4, 71 | holder_thickness = thick 72 | ); 73 | } 74 | if(size == 80) 75 | { 76 | _fan_mount( 77 | fan_size = 80, 78 | fan_mounting_pitch = 71.5, 79 | fan_m_hole_dia = 4.4, 80 | holder_thickness = thick 81 | ); 82 | } 83 | 84 | if(size == 120) 85 | { 86 | _fan_mount( 87 | fan_size = 120, 88 | fan_mounting_pitch = 105, 89 | fan_m_hole_dia = 4.4, 90 | holder_thickness = thick 91 | ); 92 | } 93 | } 94 | 95 | 96 | //inner module 97 | module _fan_mount( 98 | fan_size, //nominsl size of fan 99 | fan_mounting_pitch, //pitch between mounting holes 100 | fan_m_hole_dia, //mounting hole diameter 101 | holder_thickness //user defined thickness 102 | ) 103 | { 104 | 105 | offset1 = (fan_size-(fan_mounting_pitch + fan_m_hole_dia))/2; 106 | offset2 = (fan_size-(fan_mounting_pitch))/2; 107 | offset3 = offset2 + fan_mounting_pitch; 108 | thickness = (fan_size-fan_mounting_pitch)/2; 109 | 110 | //difference() 111 | //{ 112 | linear_extrude(height = holder_thickness) 113 | union() 114 | { 115 | difference() 116 | { 117 | translate([fan_m_hole_dia/2,fan_m_hole_dia/2,0]) 118 | minkowski() 119 | { 120 | square([fan_size - fan_m_hole_dia,fan_size - fan_m_hole_dia]); 121 | circle(r= fan_m_hole_dia/2, $fn=20); 122 | } 123 | 124 | translate([offset1,offset1,0]) 125 | square([fan_mounting_pitch + fan_m_hole_dia,fan_mounting_pitch + fan_m_hole_dia]); 126 | } 127 | translate([offset2,offset2,0]) 128 | rotate([0,0,0])_corner_hole(); 129 | translate([offset3,offset2,0]) 130 | rotate([0,0,90])_corner_hole(); 131 | translate([offset2,offset3,0]) 132 | rotate([0,0,90])_corner_hole(); 133 | translate([offset3,offset3,0]) 134 | rotate([0,0,0])_corner_hole(); 135 | } 136 | 137 | module _corner_hole() 138 | { 139 | difference(){ 140 | union(){ 141 | difference(){ 142 | square([fan_m_hole_dia + thickness,fan_m_hole_dia + thickness],center=true); 143 | square([(fan_m_hole_dia + thickness)/2,(fan_m_hole_dia + thickness)/2],center=false); 144 | translate([-(fan_m_hole_dia + thickness)/2,-(fan_m_hole_dia + thickness)/2]) 145 | square([(fan_m_hole_dia + thickness)/2,(fan_m_hole_dia + thickness)/2],center=false); 146 | } 147 | circle(r=(fan_m_hole_dia + thickness)/2, $fn=20); 148 | } 149 | circle(r=(fan_m_hole_dia)/2, $fn=20); 150 | } 151 | } 152 | 153 | 154 | echo(offset1,offset2,thickness); 155 | } 156 | 157 | -------------------------------------------------------------------------------- /e3dmount/mountadapter.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | OpenSCAD Model 5 | 48 | -------------------------------------------------------------------------------- /Autolevel/Servos/hitec_servos.scad: -------------------------------------------------------------------------------- 1 | /************************************************* 2 | hitec Servo Library 3 | Author: Maarten Weyn 4 | Website: http://mweyn.wesdec.be 5 | 6 | v0.4 7 | 8 | 9 | Servo Modules: 10 | - Servo_Hitec_HS_645MG(showaxis=false) 11 | - Servo_Hitec_HS_485HB(showaxis=false) 12 | 13 | * showaxis shows the other side of the axis which can be used as a connection point 14 | 15 | Horn Modules 16 | - Horn_Hitec_HD_LS(fulldetail=true) Heavy Duty L Horn 17 | - Horn_Hitec_R_X(fulldetail=true) Regular X Horn 18 | 19 | * fulldetail=false only gives the exterior which makes it easier to use in a difference 20 | 21 | 22 | Changes 23 | v0.4: 24 | - added cylinder near label 25 | - fixed cylinder radios on top (near axis) for HS 485HB 26 | 27 | 28 | *************************************************/ 29 | 30 | 31 | $fn=50; 32 | 33 | // Servos 34 | module Servo_Hitec_HS_645MG(showaxis=false) 35 | { 36 | Servo_Hitec_Standard(showaxis, 40.6, 19.8, 35.8, 2, 27, 6.4, 30.7, 13, 6, 6, 3.5, 5); 37 | } 38 | 39 | module Servo_Hitec_HS_485HB(showaxis=false) 40 | { 41 | Servo_Hitec_Standard(showaxis, 40, 19.82, 34.8, 3, 28, 6.55, 30, 14, 1, 6, 3.5, 1); 42 | } 43 | 44 | module Servo_Hitec_Standard(showaxis=false, boxlength, boxwidth, boxheight, topheight, connectionheight, connectionlength, axisxposition, topclinderradius, wirelength, wirewidth, wireheight, wirezposition) 45 | { 46 | 47 | translate([-axisxposition, -boxwidth/2, -boxheight]) 48 | { 49 | cube([boxlength, boxwidth, boxheight]); 50 | 51 | Servo_HS_Standard_Connections(connectionheight, connectionlength, boxwidth); 52 | rotate(180) translate([-boxlength, -boxwidth,0]) Servo_HS_Standard_Connections(connectionheight, connectionlength, boxwidth); 53 | 54 | translate([axisxposition, boxwidth/2, boxheight]) cylinder(h=topheight,r=19.8/2); 55 | translate([6, 1.15, boxheight]) cube([22.1, 17.5, topheight]); 56 | 57 | translate([8.5, boxwidth/2, boxheight]) cylinder(h=topheight,r=5.5); 58 | 59 | translate([axisxposition, boxwidth/2, boxheight + topheight]) cylinder(h=2,r=topclinderradius/2); 60 | translate([axisxposition, boxwidth/2, boxheight + topheight + 2]) cylinder(h=3.2,r=5.5/2); 61 | 62 | translate([boxlength,(boxwidth-wirewidth)/2,wirezposition]) cube([wirelength, wirewidth,wireheight]); 63 | 64 | if (showaxis) 65 | translate([axisxposition, boxwidth/2, -7]) %cylinder(h=50,r=5.5/2); 66 | 67 | } 68 | } 69 | 70 | module Servo_HS_Standard_Connections(zPosition, length, width ) 71 | { 72 | translate([-length,0,zPosition]) 73 | difference() 74 | { 75 | union() 76 | { 77 | cube([20, width, 2]); 78 | 79 | translate([0,width/2,0]) 80 | hull() 81 | { 82 | cube([0.1, 1, 2.5]); 83 | translate([length - 0.01,0,0]) cube([1, 1, 4]); 84 | } 85 | } 86 | 87 | 88 | for(y=[4.8, 15]) 89 | { 90 | translate([-1, y-1.25, -1]) cube([3, 2.5, 4]); 91 | translate([2.5,y,-1]) cylinder(h=4,r=2.21); 92 | } 93 | } 94 | } 95 | 96 | 97 | // Horns 98 | module Horn_Hitec_HD_LS(fulldetail=true) 99 | { 100 | 101 | hornScrewDiameter = 1.6; 102 | 103 | translate([0, 0, -1]) 104 | difference() 105 | { 106 | union() 107 | { 108 | hull() 109 | { 110 | cylinder(h=2, r=7); 111 | translate([22, 0, 0]) cylinder(h=2, r=4); 112 | } 113 | 114 | hull() 115 | { 116 | translate([0, 0, -1]) 117 | { 118 | cylinder(h=4, r=5.5); 119 | translate([0, -5, 0]) cube([6, 10, 4]); 120 | } 121 | 122 | cylinder(h=2, r=7); 123 | translate([0, -6, 0]) cube([7, 12, 2]); 124 | } 125 | 126 | hull() 127 | { 128 | translate([0, 0, -3]) 129 | { 130 | cylinder(h=2, r=4); 131 | translate([0, 0, 1.8]) cylinder(h=0.2, r=5.5); 132 | } 133 | } 134 | } 135 | 136 | if (fulldetail) 137 | { 138 | union() 139 | { 140 | translate([0, 0, -4]) cylinder(h=8, r=1); 141 | translate([0, 0, 1]) cylinder(h=3, r=4.5); 142 | translate([0, 0, -4]) cylinder(h=4, r=3); 143 | } 144 | 145 | for ( x = [13, 16, 19, 22]) { 146 | translate([x, 0, -1])cylinder(h=4, r=hornScrewDiameter/2); 147 | } 148 | } 149 | } 150 | } 151 | 152 | module Horn_Hitec_R_X(fulldetail=true) 153 | { 154 | hornScrewDiameter = 1.5; 155 | difference() 156 | { 157 | union() 158 | { 159 | hull() 160 | { 161 | cylinder(h=2, r=5.5); 162 | translate([13.25,0,0]) cylinder(h=2, r=2); 163 | translate([-13.25,0,0]) cylinder(h=2, r=2); 164 | } 165 | hull() 166 | { 167 | cylinder(h=2, r=5.5); 168 | translate([0,13.75,0]) cylinder(h=2, r=2); 169 | translate([0,-13.75,0]) cylinder(h=2, r=2); 170 | } 171 | 172 | translate([0,0,-2]) cylinder(h=4, r=4.4); 173 | cylinder(h=2.5, r=4); 174 | } 175 | 176 | if (fulldetail) 177 | { 178 | translate([0,0,-3]) cylinder(h=8, r=1.5); 179 | translate([0,0,1.5]) cylinder(h=2, r=3); 180 | translate([0,0,-5]) cylinder(h=6, r=2.5); 181 | 182 | for ( x = [-12.5, -10, -7.5, 7.5, 10, 12.5]) { 183 | translate([x, 0, -1]) cylinder(h=4, r=hornScrewDiameter/2); 184 | } 185 | for ( y = [-13, -10.5, -8, 8, 10.5, 13]) { 186 | translate([0, y, -1]) cylinder(h=4, r=hornScrewDiameter/2); 187 | } 188 | } 189 | } 190 | } 191 | 192 | module showServos() 193 | { 194 | Servo_Hitec_HS_645MG(false); 195 | translate([0,0,9]) Horn_Hitec_HD_LS(true); 196 | 197 | translate([0,50,0]) 198 | { 199 | Servo_Hitec_HS_485HB(); 200 | //translate([0,0,8]) Horn_Hitec_R_X(true); 201 | } 202 | } 203 | 204 | //showServos(); -------------------------------------------------------------------------------- /glass_tab.stl: -------------------------------------------------------------------------------- 1 | solid OpenSCAD_Model 2 | facet normal -1 0 0 3 | outer loop 4 | vertex -12.7 5.2 2.22045e-16 5 | vertex -12.7 5.2 3.6 6 | vertex -12.7 33.4 2.22045e-16 7 | endloop 8 | endfacet 9 | facet normal -1 0 0 10 | outer loop 11 | vertex -12.7 33.4 2.22045e-16 12 | vertex -12.7 5.2 3.6 13 | vertex -12.7 33.4 3.6 14 | endloop 15 | endfacet 16 | facet normal -0.994522 -0.104528 0 17 | outer loop 18 | vertex -12.7 5.2 2.22045e-16 19 | vertex -12.4225 2.55952 2.22045e-16 20 | vertex -12.7 5.2 3.6 21 | endloop 22 | endfacet 23 | facet normal -0.994522 -0.104528 0 24 | outer loop 25 | vertex -12.7 5.2 3.6 26 | vertex -12.4225 2.55952 2.22045e-16 27 | vertex -12.4225 2.55952 3.6 28 | endloop 29 | endfacet 30 | facet normal 0 0 -1 31 | outer loop 32 | vertex -12.7 5.2 2.22045e-16 33 | vertex -12.7 33.4 2.22045e-16 34 | vertex -12.4225 2.55952 2.22045e-16 35 | endloop 36 | endfacet 37 | facet normal 0 0 -1 38 | outer loop 39 | vertex -12.4225 2.55952 2.22045e-16 40 | vertex -12.7 33.4 2.22045e-16 41 | vertex 12.7 33.4 2.22045e-16 42 | endloop 43 | endfacet 44 | facet normal 0 0 -1 45 | outer loop 46 | vertex -12.4225 2.55952 2.22045e-16 47 | vertex 12.7 33.4 2.22045e-16 48 | vertex 12.7 5.2 2.22045e-16 49 | endloop 50 | endfacet 51 | facet normal 0 0 -1 52 | outer loop 53 | vertex -12.4225 2.55952 2.22045e-16 54 | vertex 12.7 5.2 2.22045e-16 55 | vertex 12.4225 2.55952 2.22045e-16 56 | endloop 57 | endfacet 58 | facet normal 0 0 -1 59 | outer loop 60 | vertex 0.8625 1.49389 2.22045e-16 61 | vertex 12.4225 2.55952 2.22045e-16 62 | vertex 11.602 0.034445 2.22045e-16 63 | endloop 64 | endfacet 65 | facet normal 0 0 -1 66 | outer loop 67 | vertex 1.725 0 2.22045e-16 68 | vertex 11.602 0.034445 2.22045e-16 69 | vertex 10.2745 -2.26487 2.22045e-16 70 | endloop 71 | endfacet 72 | facet normal 0 0 -1 73 | outer loop 74 | vertex 1.49389 -0.8625 2.22045e-16 75 | vertex 10.2745 -2.26487 2.22045e-16 76 | vertex 8.49796 -4.23794 2.22045e-16 77 | endloop 78 | endfacet 79 | facet normal 0 0 -1 80 | outer loop 81 | vertex -0.8625 -1.49389 2.22045e-16 82 | vertex 8.49796 -4.23794 2.22045e-16 83 | vertex 6.35 -5.79852 2.22045e-16 84 | endloop 85 | endfacet 86 | facet normal 0 0 -1 87 | outer loop 88 | vertex -12.4225 2.55952 2.22045e-16 89 | vertex 6.35 -5.79852 2.22045e-16 90 | vertex 3.92452 -6.87842 2.22045e-16 91 | endloop 92 | endfacet 93 | facet normal 0 0 -1 94 | outer loop 95 | vertex -12.4225 2.55952 2.22045e-16 96 | vertex 3.92452 -6.87842 2.22045e-16 97 | vertex 1.32751 -7.43043 2.22045e-16 98 | endloop 99 | endfacet 100 | facet normal 0 0 -1 101 | outer loop 102 | vertex -12.4225 2.55952 2.22045e-16 103 | vertex 1.32751 -7.43043 2.22045e-16 104 | vertex -1.32751 -7.43043 2.22045e-16 105 | endloop 106 | endfacet 107 | facet normal 0 0 -1 108 | outer loop 109 | vertex -12.4225 2.55952 2.22045e-16 110 | vertex -1.32751 -7.43043 2.22045e-16 111 | vertex -3.92452 -6.87842 2.22045e-16 112 | endloop 113 | endfacet 114 | facet normal 0 0 -1 115 | outer loop 116 | vertex -12.4225 2.55952 2.22045e-16 117 | vertex -3.92452 -6.87842 2.22045e-16 118 | vertex -6.35 -5.79852 2.22045e-16 119 | endloop 120 | endfacet 121 | facet normal 0 0 -1 122 | outer loop 123 | vertex -12.4225 2.55952 2.22045e-16 124 | vertex -6.35 -5.79852 2.22045e-16 125 | vertex -8.49796 -4.23794 2.22045e-16 126 | endloop 127 | endfacet 128 | facet normal 0 0 -1 129 | outer loop 130 | vertex -12.4225 2.55952 2.22045e-16 131 | vertex -8.49796 -4.23794 2.22045e-16 132 | vertex -10.2745 -2.26487 2.22045e-16 133 | endloop 134 | endfacet 135 | facet normal 0 0 -1 136 | outer loop 137 | vertex -12.4225 2.55952 2.22045e-16 138 | vertex -10.2745 -2.26487 2.22045e-16 139 | vertex -11.602 0.034445 2.22045e-16 140 | endloop 141 | endfacet 142 | facet normal 0 0 -1 143 | outer loop 144 | vertex -0.8625 -1.49389 2.22045e-16 145 | vertex -12.4225 2.55952 2.22045e-16 146 | vertex -1.49389 -0.8625 2.22045e-16 147 | endloop 148 | endfacet 149 | facet normal 0 0 -1 150 | outer loop 151 | vertex -12.4225 2.55952 2.22045e-16 152 | vertex -1.725 0 2.22045e-16 153 | vertex -1.49389 -0.8625 2.22045e-16 154 | endloop 155 | endfacet 156 | facet normal 0 0 -1 157 | outer loop 158 | vertex 0 -1.725 2.22045e-16 159 | vertex 8.49796 -4.23794 2.22045e-16 160 | vertex -0.8625 -1.49389 2.22045e-16 161 | endloop 162 | endfacet 163 | facet normal 0 0 -1 164 | outer loop 165 | vertex -12.4225 2.55952 2.22045e-16 166 | vertex -0.8625 -1.49389 2.22045e-16 167 | vertex 6.35 -5.79852 2.22045e-16 168 | endloop 169 | endfacet 170 | facet normal 0 0 -1 171 | outer loop 172 | vertex 0.8625 -1.49389 2.22045e-16 173 | vertex 8.49796 -4.23794 2.22045e-16 174 | vertex 0 -1.725 2.22045e-16 175 | endloop 176 | endfacet 177 | facet normal 0 0 -1 178 | outer loop 179 | vertex 1.49389 -0.8625 2.22045e-16 180 | vertex 8.49796 -4.23794 2.22045e-16 181 | vertex 0.8625 -1.49389 2.22045e-16 182 | endloop 183 | endfacet 184 | facet normal 0 0 -1 185 | outer loop 186 | vertex 1.725 0 2.22045e-16 187 | vertex 10.2745 -2.26487 2.22045e-16 188 | vertex 1.49389 -0.8625 2.22045e-16 189 | endloop 190 | endfacet 191 | facet normal 0 0 -1 192 | outer loop 193 | vertex 1.49389 0.8625 2.22045e-16 194 | vertex 11.602 0.034445 2.22045e-16 195 | vertex 1.725 0 2.22045e-16 196 | endloop 197 | endfacet 198 | facet normal 0 0 -1 199 | outer loop 200 | vertex 0 1.725 2.22045e-16 201 | vertex 12.4225 2.55952 2.22045e-16 202 | vertex 0.8625 1.49389 2.22045e-16 203 | endloop 204 | endfacet 205 | facet normal 0 0 -1 206 | outer loop 207 | vertex -0.8625 1.49389 2.22045e-16 208 | vertex -12.4225 2.55952 2.22045e-16 209 | vertex 0 1.725 2.22045e-16 210 | endloop 211 | endfacet 212 | facet normal 0 0 -1 213 | outer loop 214 | vertex -12.4225 2.55952 2.22045e-16 215 | vertex 12.4225 2.55952 2.22045e-16 216 | vertex 0 1.725 2.22045e-16 217 | endloop 218 | endfacet 219 | facet normal 0 0 -1 220 | outer loop 221 | vertex -1.49389 0.8625 2.22045e-16 222 | vertex -12.4225 2.55952 2.22045e-16 223 | vertex -0.8625 1.49389 2.22045e-16 224 | endloop 225 | endfacet 226 | facet normal 0 0 -1 227 | outer loop 228 | vertex -1.725 0 2.22045e-16 229 | vertex -12.4225 2.55952 2.22045e-16 230 | vertex -1.49389 0.8625 2.22045e-16 231 | endloop 232 | endfacet 233 | facet normal 0 0 -1 234 | outer loop 235 | vertex 0.8625 1.49389 2.22045e-16 236 | vertex 11.602 0.034445 2.22045e-16 237 | vertex 1.49389 0.8625 2.22045e-16 238 | endloop 239 | endfacet 240 | facet normal 0 1 0 241 | outer loop 242 | vertex -12.7 33.4 2.22045e-16 243 | vertex -12.7 33.4 3.6 244 | vertex 12.7 33.4 2.22045e-16 245 | endloop 246 | endfacet 247 | facet normal 0 1 0 248 | outer loop 249 | vertex 12.7 33.4 2.22045e-16 250 | vertex -12.7 33.4 3.6 251 | vertex 12.7 33.4 3.6 252 | endloop 253 | endfacet 254 | facet normal 0 0 1 255 | outer loop 256 | vertex -12.7 33.4 3.6 257 | vertex -12.7 5.2 3.6 258 | vertex -12.4225 2.55952 3.6 259 | endloop 260 | endfacet 261 | facet normal 0 0 1 262 | outer loop 263 | vertex -10.2745 -2.26487 3.6 264 | vertex -12.7 33.4 3.6 265 | vertex -11.602 0.034445 3.6 266 | endloop 267 | endfacet 268 | facet normal 0 0 1 269 | outer loop 270 | vertex -11.602 0.034445 3.6 271 | vertex -12.7 33.4 3.6 272 | vertex -12.4225 2.55952 3.6 273 | endloop 274 | endfacet 275 | facet normal 0 0 1 276 | outer loop 277 | vertex -8.49796 -4.23794 3.6 278 | vertex -12.7 33.4 3.6 279 | vertex -10.2745 -2.26487 3.6 280 | endloop 281 | endfacet 282 | facet normal 0 0 1 283 | outer loop 284 | vertex -6.35 -5.79852 3.6 285 | vertex -12.7 33.4 3.6 286 | vertex -8.49796 -4.23794 3.6 287 | endloop 288 | endfacet 289 | facet normal 0 0 1 290 | outer loop 291 | vertex -3.92452 -6.87842 3.6 292 | vertex -12.7 33.4 3.6 293 | vertex -6.35 -5.79852 3.6 294 | endloop 295 | endfacet 296 | facet normal 0 0 1 297 | outer loop 298 | vertex -1.32751 -7.43043 3.6 299 | vertex -12.7 33.4 3.6 300 | vertex -3.92452 -6.87842 3.6 301 | endloop 302 | endfacet 303 | facet normal 0 0 1 304 | outer loop 305 | vertex -1.49389 -0.8625 3.6 306 | vertex -12.7 33.4 3.6 307 | vertex -1.32751 -7.43043 3.6 308 | endloop 309 | endfacet 310 | facet normal 0 0 1 311 | outer loop 312 | vertex 1.49389 0.8625 3.6 313 | vertex 1.725 0 3.6 314 | vertex 6.35 -5.79852 3.6 315 | endloop 316 | endfacet 317 | facet normal 0 0 1 318 | outer loop 319 | vertex 8.49796 -4.23794 3.6 320 | vertex -12.7 33.4 3.6 321 | vertex 6.35 -5.79852 3.6 322 | endloop 323 | endfacet 324 | facet normal 0 0 1 325 | outer loop 326 | vertex 10.2745 -2.26487 3.6 327 | vertex -12.7 33.4 3.6 328 | vertex 8.49796 -4.23794 3.6 329 | endloop 330 | endfacet 331 | facet normal 0 0 1 332 | outer loop 333 | vertex 11.602 0.034445 3.6 334 | vertex -12.7 33.4 3.6 335 | vertex 10.2745 -2.26487 3.6 336 | endloop 337 | endfacet 338 | facet normal 0 0 1 339 | outer loop 340 | vertex 12.4225 2.55952 3.6 341 | vertex -12.7 33.4 3.6 342 | vertex 11.602 0.034445 3.6 343 | endloop 344 | endfacet 345 | facet normal 0 0 1 346 | outer loop 347 | vertex 12.7 5.2 3.6 348 | vertex -12.7 33.4 3.6 349 | vertex 12.4225 2.55952 3.6 350 | endloop 351 | endfacet 352 | facet normal 0 0 1 353 | outer loop 354 | vertex 12.7 33.4 3.6 355 | vertex -12.7 33.4 3.6 356 | vertex 12.7 5.2 3.6 357 | endloop 358 | endfacet 359 | facet normal 0 0 1 360 | outer loop 361 | vertex 1.32751 -7.43043 3.6 362 | vertex -1.49389 -0.8625 3.6 363 | vertex -1.32751 -7.43043 3.6 364 | endloop 365 | endfacet 366 | facet normal 0 0 1 367 | outer loop 368 | vertex -1.725 0 3.6 369 | vertex -12.7 33.4 3.6 370 | vertex -1.49389 -0.8625 3.6 371 | endloop 372 | endfacet 373 | facet normal 0 0 1 374 | outer loop 375 | vertex 0 1.725 3.6 376 | vertex 0.8625 1.49389 3.6 377 | vertex -12.7 33.4 3.6 378 | endloop 379 | endfacet 380 | facet normal 0 0 1 381 | outer loop 382 | vertex -0.8625 1.49389 3.6 383 | vertex -12.7 33.4 3.6 384 | vertex -1.49389 0.8625 3.6 385 | endloop 386 | endfacet 387 | facet normal 0 0 1 388 | outer loop 389 | vertex 0 -1.725 3.6 390 | vertex -0.8625 -1.49389 3.6 391 | vertex 1.32751 -7.43043 3.6 392 | endloop 393 | endfacet 394 | facet normal 0 0 1 395 | outer loop 396 | vertex 0 1.725 3.6 397 | vertex -12.7 33.4 3.6 398 | vertex -0.8625 1.49389 3.6 399 | endloop 400 | endfacet 401 | facet normal 0 0 1 402 | outer loop 403 | vertex 0.8625 -1.49389 3.6 404 | vertex 0 -1.725 3.6 405 | vertex 3.92452 -6.87842 3.6 406 | endloop 407 | endfacet 408 | facet normal 0 0 1 409 | outer loop 410 | vertex 1.49389 -0.8625 3.6 411 | vertex 0.8625 -1.49389 3.6 412 | vertex 3.92452 -6.87842 3.6 413 | endloop 414 | endfacet 415 | facet normal 0 0 1 416 | outer loop 417 | vertex 1.49389 0.8625 3.6 418 | vertex -12.7 33.4 3.6 419 | vertex 0.8625 1.49389 3.6 420 | endloop 421 | endfacet 422 | facet normal 0 0 1 423 | outer loop 424 | vertex 1.725 0 3.6 425 | vertex 1.49389 -0.8625 3.6 426 | vertex 3.92452 -6.87842 3.6 427 | endloop 428 | endfacet 429 | facet normal 0 0 1 430 | outer loop 431 | vertex 6.35 -5.79852 3.6 432 | vertex -12.7 33.4 3.6 433 | vertex 1.49389 0.8625 3.6 434 | endloop 435 | endfacet 436 | facet normal 0 0 1 437 | outer loop 438 | vertex 6.35 -5.79852 3.6 439 | vertex 1.725 0 3.6 440 | vertex 3.92452 -6.87842 3.6 441 | endloop 442 | endfacet 443 | facet normal 0 0 1 444 | outer loop 445 | vertex 3.92452 -6.87842 3.6 446 | vertex 0 -1.725 3.6 447 | vertex 1.32751 -7.43043 3.6 448 | endloop 449 | endfacet 450 | facet normal 0 0 1 451 | outer loop 452 | vertex -0.8625 -1.49389 3.6 453 | vertex -1.49389 -0.8625 3.6 454 | vertex 1.32751 -7.43043 3.6 455 | endloop 456 | endfacet 457 | facet normal 0 0 1 458 | outer loop 459 | vertex -1.725 0 3.6 460 | vertex -1.49389 0.8625 3.6 461 | vertex -12.7 33.4 3.6 462 | endloop 463 | endfacet 464 | facet normal -0.951056 -0.309017 0 465 | outer loop 466 | vertex -12.4225 2.55952 2.22045e-16 467 | vertex -11.602 0.034445 2.22045e-16 468 | vertex -12.4225 2.55952 3.6 469 | endloop 470 | endfacet 471 | facet normal -0.951056 -0.309017 0 472 | outer loop 473 | vertex -12.4225 2.55952 3.6 474 | vertex -11.602 0.034445 2.22045e-16 475 | vertex -11.602 0.034445 3.6 476 | endloop 477 | endfacet 478 | facet normal -0.866026 -0.5 0 479 | outer loop 480 | vertex -11.602 0.034445 2.22045e-16 481 | vertex -10.2745 -2.26487 2.22045e-16 482 | vertex -11.602 0.034445 3.6 483 | endloop 484 | endfacet 485 | facet normal -0.866026 -0.5 0 486 | outer loop 487 | vertex -11.602 0.034445 3.6 488 | vertex -10.2745 -2.26487 2.22045e-16 489 | vertex -10.2745 -2.26487 3.6 490 | endloop 491 | endfacet 492 | facet normal -0.743145 -0.669131 0 493 | outer loop 494 | vertex -10.2745 -2.26487 2.22045e-16 495 | vertex -8.49796 -4.23794 2.22045e-16 496 | vertex -10.2745 -2.26487 3.6 497 | endloop 498 | endfacet 499 | facet normal -0.743145 -0.669131 0 500 | outer loop 501 | vertex -10.2745 -2.26487 3.6 502 | vertex -8.49796 -4.23794 2.22045e-16 503 | vertex -8.49796 -4.23794 3.6 504 | endloop 505 | endfacet 506 | facet normal -0.587785 -0.809017 0 507 | outer loop 508 | vertex -8.49796 -4.23794 3.6 509 | vertex -8.49796 -4.23794 2.22045e-16 510 | vertex -6.35 -5.79852 2.22045e-16 511 | endloop 512 | endfacet 513 | facet normal -0.587785 -0.809017 0 514 | outer loop 515 | vertex -6.35 -5.79852 3.6 516 | vertex -8.49796 -4.23794 3.6 517 | vertex -6.35 -5.79852 2.22045e-16 518 | endloop 519 | endfacet 520 | facet normal -0.406737 -0.913545 0 521 | outer loop 522 | vertex -6.35 -5.79852 3.6 523 | vertex -6.35 -5.79852 2.22045e-16 524 | vertex -3.92452 -6.87842 2.22045e-16 525 | endloop 526 | endfacet 527 | facet normal -0.406737 -0.913545 0 528 | outer loop 529 | vertex -3.92452 -6.87842 3.6 530 | vertex -6.35 -5.79852 3.6 531 | vertex -3.92452 -6.87842 2.22045e-16 532 | endloop 533 | endfacet 534 | facet normal -0.207912 -0.978148 0 535 | outer loop 536 | vertex -3.92452 -6.87842 3.6 537 | vertex -3.92452 -6.87842 2.22045e-16 538 | vertex -1.32751 -7.43043 2.22045e-16 539 | endloop 540 | endfacet 541 | facet normal -0.207912 -0.978148 0 542 | outer loop 543 | vertex -1.32751 -7.43043 3.6 544 | vertex -3.92452 -6.87842 3.6 545 | vertex -1.32751 -7.43043 2.22045e-16 546 | endloop 547 | endfacet 548 | facet normal 0 -1 0 549 | outer loop 550 | vertex -1.32751 -7.43043 3.6 551 | vertex -1.32751 -7.43043 2.22045e-16 552 | vertex 1.32751 -7.43043 2.22045e-16 553 | endloop 554 | endfacet 555 | facet normal 0 -1 0 556 | outer loop 557 | vertex 1.32751 -7.43043 3.6 558 | vertex -1.32751 -7.43043 3.6 559 | vertex 1.32751 -7.43043 2.22045e-16 560 | endloop 561 | endfacet 562 | facet normal 0.207912 -0.978148 0 563 | outer loop 564 | vertex 1.32751 -7.43043 3.6 565 | vertex 1.32751 -7.43043 2.22045e-16 566 | vertex 3.92452 -6.87842 2.22045e-16 567 | endloop 568 | endfacet 569 | facet normal 0.207912 -0.978148 0 570 | outer loop 571 | vertex 3.92452 -6.87842 3.6 572 | vertex 1.32751 -7.43043 3.6 573 | vertex 3.92452 -6.87842 2.22045e-16 574 | endloop 575 | endfacet 576 | facet normal 0.406737 -0.913545 0 577 | outer loop 578 | vertex 3.92452 -6.87842 3.6 579 | vertex 3.92452 -6.87842 2.22045e-16 580 | vertex 6.35 -5.79852 2.22045e-16 581 | endloop 582 | endfacet 583 | facet normal 0.406737 -0.913545 0 584 | outer loop 585 | vertex 6.35 -5.79852 3.6 586 | vertex 3.92452 -6.87842 3.6 587 | vertex 6.35 -5.79852 2.22045e-16 588 | endloop 589 | endfacet 590 | facet normal 0.587785 -0.809017 0 591 | outer loop 592 | vertex 6.35 -5.79852 3.6 593 | vertex 6.35 -5.79852 2.22045e-16 594 | vertex 8.49796 -4.23794 2.22045e-16 595 | endloop 596 | endfacet 597 | facet normal 0.587785 -0.809017 0 598 | outer loop 599 | vertex 8.49796 -4.23794 3.6 600 | vertex 6.35 -5.79852 3.6 601 | vertex 8.49796 -4.23794 2.22045e-16 602 | endloop 603 | endfacet 604 | facet normal 0.743145 -0.669131 0 605 | outer loop 606 | vertex 8.49796 -4.23794 3.6 607 | vertex 8.49796 -4.23794 2.22045e-16 608 | vertex 10.2745 -2.26487 2.22045e-16 609 | endloop 610 | endfacet 611 | facet normal 0.743145 -0.669131 0 612 | outer loop 613 | vertex 10.2745 -2.26487 3.6 614 | vertex 8.49796 -4.23794 3.6 615 | vertex 10.2745 -2.26487 2.22045e-16 616 | endloop 617 | endfacet 618 | facet normal 0.866026 -0.5 0 619 | outer loop 620 | vertex 10.2745 -2.26487 3.6 621 | vertex 10.2745 -2.26487 2.22045e-16 622 | vertex 11.602 0.034445 2.22045e-16 623 | endloop 624 | endfacet 625 | facet normal 0.866026 -0.5 0 626 | outer loop 627 | vertex 11.602 0.034445 3.6 628 | vertex 10.2745 -2.26487 3.6 629 | vertex 11.602 0.034445 2.22045e-16 630 | endloop 631 | endfacet 632 | facet normal 0.951056 -0.309017 0 633 | outer loop 634 | vertex 11.602 0.034445 3.6 635 | vertex 11.602 0.034445 2.22045e-16 636 | vertex 12.4225 2.55952 2.22045e-16 637 | endloop 638 | endfacet 639 | facet normal 0.951056 -0.309017 0 640 | outer loop 641 | vertex 12.4225 2.55952 3.6 642 | vertex 11.602 0.034445 3.6 643 | vertex 12.4225 2.55952 2.22045e-16 644 | endloop 645 | endfacet 646 | facet normal 0.994522 -0.104528 0 647 | outer loop 648 | vertex 12.4225 2.55952 3.6 649 | vertex 12.4225 2.55952 2.22045e-16 650 | vertex 12.7 5.2 2.22045e-16 651 | endloop 652 | endfacet 653 | facet normal 0.994522 -0.104528 0 654 | outer loop 655 | vertex 12.7 5.2 3.6 656 | vertex 12.4225 2.55952 3.6 657 | vertex 12.7 5.2 2.22045e-16 658 | endloop 659 | endfacet 660 | facet normal 1 0 0 661 | outer loop 662 | vertex 12.7 5.2 3.6 663 | vertex 12.7 5.2 2.22045e-16 664 | vertex 12.7 33.4 2.22045e-16 665 | endloop 666 | endfacet 667 | facet normal 1 0 0 668 | outer loop 669 | vertex 12.7 33.4 3.6 670 | vertex 12.7 5.2 3.6 671 | vertex 12.7 33.4 2.22045e-16 672 | endloop 673 | endfacet 674 | facet normal 0.965926 -0.258819 0 675 | outer loop 676 | vertex -1.49389 0.8625 2.22045e-16 677 | vertex -1.49389 0.8625 3.6 678 | vertex -1.725 0 3.6 679 | endloop 680 | endfacet 681 | facet normal 0.965926 -0.258819 0 682 | outer loop 683 | vertex -1.725 0 2.22045e-16 684 | vertex -1.49389 0.8625 2.22045e-16 685 | vertex -1.725 0 3.6 686 | endloop 687 | endfacet 688 | facet normal 0.965926 0.258819 0 689 | outer loop 690 | vertex -1.725 0 3.6 691 | vertex -1.49389 -0.8625 3.6 692 | vertex -1.49389 -0.8625 2.22045e-16 693 | endloop 694 | endfacet 695 | facet normal 0.965926 0.258819 0 696 | outer loop 697 | vertex -1.725 0 2.22045e-16 698 | vertex -1.725 0 3.6 699 | vertex -1.49389 -0.8625 2.22045e-16 700 | endloop 701 | endfacet 702 | facet normal 0.707107 -0.707107 0 703 | outer loop 704 | vertex -0.8625 1.49389 2.22045e-16 705 | vertex -0.8625 1.49389 3.6 706 | vertex -1.49389 0.8625 3.6 707 | endloop 708 | endfacet 709 | facet normal 0.707107 -0.707107 0 710 | outer loop 711 | vertex -1.49389 0.8625 2.22045e-16 712 | vertex -0.8625 1.49389 2.22045e-16 713 | vertex -1.49389 0.8625 3.6 714 | endloop 715 | endfacet 716 | facet normal 0.258819 -0.965926 0 717 | outer loop 718 | vertex 0 1.725 2.22045e-16 719 | vertex 0 1.725 3.6 720 | vertex -0.8625 1.49389 3.6 721 | endloop 722 | endfacet 723 | facet normal 0.258819 -0.965926 0 724 | outer loop 725 | vertex -0.8625 1.49389 2.22045e-16 726 | vertex 0 1.725 2.22045e-16 727 | vertex -0.8625 1.49389 3.6 728 | endloop 729 | endfacet 730 | facet normal -0.258819 -0.965926 0 731 | outer loop 732 | vertex 0.8625 1.49389 2.22045e-16 733 | vertex 0.8625 1.49389 3.6 734 | vertex 0 1.725 3.6 735 | endloop 736 | endfacet 737 | facet normal -0.258819 -0.965926 0 738 | outer loop 739 | vertex 0 1.725 2.22045e-16 740 | vertex 0.8625 1.49389 2.22045e-16 741 | vertex 0 1.725 3.6 742 | endloop 743 | endfacet 744 | facet normal -0.707107 -0.707107 0 745 | outer loop 746 | vertex 1.49389 0.8625 2.22045e-16 747 | vertex 1.49389 0.8625 3.6 748 | vertex 0.8625 1.49389 3.6 749 | endloop 750 | endfacet 751 | facet normal -0.707107 -0.707107 0 752 | outer loop 753 | vertex 0.8625 1.49389 2.22045e-16 754 | vertex 1.49389 0.8625 2.22045e-16 755 | vertex 0.8625 1.49389 3.6 756 | endloop 757 | endfacet 758 | facet normal -0.965926 -0.258819 0 759 | outer loop 760 | vertex 1.725 0 3.6 761 | vertex 1.49389 0.8625 3.6 762 | vertex 1.725 0 2.22045e-16 763 | endloop 764 | endfacet 765 | facet normal -0.965926 -0.258819 0 766 | outer loop 767 | vertex 1.725 0 2.22045e-16 768 | vertex 1.49389 0.8625 3.6 769 | vertex 1.49389 0.8625 2.22045e-16 770 | endloop 771 | endfacet 772 | facet normal -0.965926 0.258819 0 773 | outer loop 774 | vertex 1.725 0 3.6 775 | vertex 1.725 0 2.22045e-16 776 | vertex 1.49389 -0.8625 3.6 777 | endloop 778 | endfacet 779 | facet normal -0.965926 0.258819 0 780 | outer loop 781 | vertex 1.49389 -0.8625 3.6 782 | vertex 1.725 0 2.22045e-16 783 | vertex 1.49389 -0.8625 2.22045e-16 784 | endloop 785 | endfacet 786 | facet normal -0.707107 0.707107 0 787 | outer loop 788 | vertex 1.49389 -0.8625 3.6 789 | vertex 1.49389 -0.8625 2.22045e-16 790 | vertex 0.8625 -1.49389 3.6 791 | endloop 792 | endfacet 793 | facet normal -0.707107 0.707107 0 794 | outer loop 795 | vertex 0.8625 -1.49389 3.6 796 | vertex 1.49389 -0.8625 2.22045e-16 797 | vertex 0.8625 -1.49389 2.22045e-16 798 | endloop 799 | endfacet 800 | facet normal -0.258819 0.965926 0 801 | outer loop 802 | vertex 0.8625 -1.49389 3.6 803 | vertex 0.8625 -1.49389 2.22045e-16 804 | vertex 0 -1.725 3.6 805 | endloop 806 | endfacet 807 | facet normal -0.258819 0.965926 0 808 | outer loop 809 | vertex 0 -1.725 3.6 810 | vertex 0.8625 -1.49389 2.22045e-16 811 | vertex 0 -1.725 2.22045e-16 812 | endloop 813 | endfacet 814 | facet normal 0.258819 0.965926 0 815 | outer loop 816 | vertex 0 -1.725 3.6 817 | vertex 0 -1.725 2.22045e-16 818 | vertex -0.8625 -1.49389 3.6 819 | endloop 820 | endfacet 821 | facet normal 0.258819 0.965926 0 822 | outer loop 823 | vertex -0.8625 -1.49389 3.6 824 | vertex 0 -1.725 2.22045e-16 825 | vertex -0.8625 -1.49389 2.22045e-16 826 | endloop 827 | endfacet 828 | facet normal 0.707107 0.707107 0 829 | outer loop 830 | vertex -0.8625 -1.49389 3.6 831 | vertex -0.8625 -1.49389 2.22045e-16 832 | vertex -1.49389 -0.8625 3.6 833 | endloop 834 | endfacet 835 | facet normal 0.707107 0.707107 0 836 | outer loop 837 | vertex -1.49389 -0.8625 3.6 838 | vertex -0.8625 -1.49389 2.22045e-16 839 | vertex -1.49389 -0.8625 2.22045e-16 840 | endloop 841 | endfacet 842 | endsolid OpenSCAD_Model 843 | -------------------------------------------------------------------------------- /logotype.stl: -------------------------------------------------------------------------------- 1 | solid OpenSCAD_Model 2 | facet normal -1 0 0 3 | outer loop 4 | vertex -41.5 8 -1.5 5 | vertex -41.5 8 1.5 6 | vertex -41.5 38 -1.5 7 | endloop 8 | endfacet 9 | facet normal -1 0 0 10 | outer loop 11 | vertex -41.5 38 -1.5 12 | vertex -41.5 8 1.5 13 | vertex -41.5 38 1.5 14 | endloop 15 | endfacet 16 | facet normal -0.985212 -0.171341 0 17 | outer loop 18 | vertex -41 5.125 1.5 19 | vertex -41.5 8 1.5 20 | vertex -41 5.125 -1.5 21 | endloop 22 | endfacet 23 | facet normal -0.985212 -0.171341 0 24 | outer loop 25 | vertex -41 5.125 -1.5 26 | vertex -41.5 8 1.5 27 | vertex -41.5 8 -1.5 28 | endloop 29 | endfacet 30 | facet normal 0 0 -1 31 | outer loop 32 | vertex -41.5 8 -1.5 33 | vertex -41.5 38 -1.5 34 | vertex -41 5.125 -1.5 35 | endloop 36 | endfacet 37 | facet normal 0 0 -1 38 | outer loop 39 | vertex -41 5.125 -1.5 40 | vertex -41.5 38 -1.5 41 | vertex -41 40.875 -1.5 42 | endloop 43 | endfacet 44 | facet normal 0 0 -1 45 | outer loop 46 | vertex -41 5.125 -1.5 47 | vertex -41 40.875 -1.5 48 | vertex -39.5 43.5 -1.5 49 | endloop 50 | endfacet 51 | facet normal 0 0 -1 52 | outer loop 53 | vertex -41 5.125 -1.5 54 | vertex -39.5 43.5 -1.5 55 | vertex -37 45.375 -1.5 56 | endloop 57 | endfacet 58 | facet normal 0 0 -1 59 | outer loop 60 | vertex -35 38.5 -1.5 61 | vertex -37 45.375 -1.5 62 | vertex -33.5 46 -1.5 63 | endloop 64 | endfacet 65 | facet normal 0 0 -1 66 | outer loop 67 | vertex -33.5 39 -1.5 68 | vertex -33.5 46 -1.5 69 | vertex -4.5 46 -1.5 70 | endloop 71 | endfacet 72 | facet normal 0 0 -1 73 | outer loop 74 | vertex -3.625 38.875 -1.5 75 | vertex -0.875 45.375 -1.5 76 | vertex 2 43.5 -1.5 77 | endloop 78 | endfacet 79 | facet normal 0 0 -1 80 | outer loop 81 | vertex -2.5 38 -1.5 82 | vertex 2 43.5 -1.5 83 | vertex 3.875 40.875 -1.5 84 | endloop 85 | endfacet 86 | facet normal 0 0 -1 87 | outer loop 88 | vertex -2.5 35 -1.5 89 | vertex 3.875 40.875 -1.5 90 | vertex 4.5 38 -1.5 91 | endloop 92 | endfacet 93 | facet normal 0 0 -1 94 | outer loop 95 | vertex 4.5 25 -1.5 96 | vertex -2.5 18 -1.5 97 | vertex -13.5 18 -1.5 98 | endloop 99 | endfacet 100 | facet normal 0 0 -1 101 | outer loop 102 | vertex -2.5 38 -1.5 103 | vertex 3.875 40.875 -1.5 104 | vertex -2.5 35 -1.5 105 | endloop 106 | endfacet 107 | facet normal 0 0 -1 108 | outer loop 109 | vertex -3 38.5 -1.5 110 | vertex 2 43.5 -1.5 111 | vertex -2.5 38 -1.5 112 | endloop 113 | endfacet 114 | facet normal 0 0 -1 115 | outer loop 116 | vertex -3.625 38.875 -1.5 117 | vertex 2 43.5 -1.5 118 | vertex -3 38.5 -1.5 119 | endloop 120 | endfacet 121 | facet normal 0 0 -1 122 | outer loop 123 | vertex -33.5 39 -1.5 124 | vertex -0.875 45.375 -1.5 125 | vertex -4.5 39 -1.5 126 | endloop 127 | endfacet 128 | facet normal 0 0 -1 129 | outer loop 130 | vertex -4.5 39 -1.5 131 | vertex -0.875 45.375 -1.5 132 | vertex -3.625 38.875 -1.5 133 | endloop 134 | endfacet 135 | facet normal 0 0 -1 136 | outer loop 137 | vertex -33.5 39 -1.5 138 | vertex -4.5 46 -1.5 139 | vertex -0.875 45.375 -1.5 140 | endloop 141 | endfacet 142 | facet normal 0 0 -1 143 | outer loop 144 | vertex -34.375 38.875 -1.5 145 | vertex -33.5 46 -1.5 146 | vertex -33.5 39 -1.5 147 | endloop 148 | endfacet 149 | facet normal 0 0 -1 150 | outer loop 151 | vertex -35 38.5 -1.5 152 | vertex -33.5 46 -1.5 153 | vertex -34.375 38.875 -1.5 154 | endloop 155 | endfacet 156 | facet normal 0 0 -1 157 | outer loop 158 | vertex -35.5 38 -1.5 159 | vertex -37 45.375 -1.5 160 | vertex -35 38.5 -1.5 161 | endloop 162 | endfacet 163 | facet normal 0 0 -1 164 | outer loop 165 | vertex -35.5 8 -1.5 166 | vertex -41 5.125 -1.5 167 | vertex -35.5 38 -1.5 168 | endloop 169 | endfacet 170 | facet normal 0 0 -1 171 | outer loop 172 | vertex -41 5.125 -1.5 173 | vertex -37 45.375 -1.5 174 | vertex -35.5 38 -1.5 175 | endloop 176 | endfacet 177 | facet normal 0 0 -1 178 | outer loop 179 | vertex -41 5.125 -1.5 180 | vertex -35.5 8 -1.5 181 | vertex -35 7.5 -1.5 182 | endloop 183 | endfacet 184 | facet normal 0 0 -1 185 | outer loop 186 | vertex 4.5 25 -1.5 187 | vertex -13.5 18 -1.5 188 | vertex -13.5 25 -1.5 189 | endloop 190 | endfacet 191 | facet normal 0 0 -1 192 | outer loop 193 | vertex -35 7.5 -1.5 194 | vertex -34.375 7.125 -1.5 195 | vertex -41 5.125 -1.5 196 | endloop 197 | endfacet 198 | facet normal 0 0 -1 199 | outer loop 200 | vertex -34.375 7.125 -1.5 201 | vertex -33.5 7 -1.5 202 | vertex -41 5.125 -1.5 203 | endloop 204 | endfacet 205 | facet normal 0 0 -1 206 | outer loop 207 | vertex -33.5 7 -1.5 208 | vertex -4.5 7 -1.5 209 | vertex -41 5.125 -1.5 210 | endloop 211 | endfacet 212 | facet normal 0 0 -1 213 | outer loop 214 | vertex -3.625 7.125 -1.5 215 | vertex 4.5 8 -1.5 216 | vertex -4.5 7 -1.5 217 | endloop 218 | endfacet 219 | facet normal 0 0 -1 220 | outer loop 221 | vertex -3 7.5 -1.5 222 | vertex 4.5 8 -1.5 223 | vertex -3.625 7.125 -1.5 224 | endloop 225 | endfacet 226 | facet normal 0 0 -1 227 | outer loop 228 | vertex -2.5 8 -1.5 229 | vertex 4.5 25 -1.5 230 | vertex 4.5 8 -1.5 231 | endloop 232 | endfacet 233 | facet normal 0 0 -1 234 | outer loop 235 | vertex -2.5 8 -1.5 236 | vertex 4.5 8 -1.5 237 | vertex -3 7.5 -1.5 238 | endloop 239 | endfacet 240 | facet normal 0 0 -1 241 | outer loop 242 | vertex -4.5 7 -1.5 243 | vertex 4.5 8 -1.5 244 | vertex 3.875 5.125 -1.5 245 | endloop 246 | endfacet 247 | facet normal 0 0 -1 248 | outer loop 249 | vertex -4.5 7 -1.5 250 | vertex 3.875 5.125 -1.5 251 | vertex -41 5.125 -1.5 252 | endloop 253 | endfacet 254 | facet normal 0 0 -1 255 | outer loop 256 | vertex -41 5.125 -1.5 257 | vertex 3.875 5.125 -1.5 258 | vertex 2 2.5 -1.5 259 | endloop 260 | endfacet 261 | facet normal 0 0 -1 262 | outer loop 263 | vertex -41 5.125 -1.5 264 | vertex 2 2.5 -1.5 265 | vertex -0.875 0.625 -1.5 266 | endloop 267 | endfacet 268 | facet normal 0 0 -1 269 | outer loop 270 | vertex -41 5.125 -1.5 271 | vertex -0.875 0.625 -1.5 272 | vertex -4.5 0 -1.5 273 | endloop 274 | endfacet 275 | facet normal 0 0 -1 276 | outer loop 277 | vertex -41 5.125 -1.5 278 | vertex -4.5 0 -1.5 279 | vertex -33.5 0 -1.5 280 | endloop 281 | endfacet 282 | facet normal 0 0 -1 283 | outer loop 284 | vertex -41 5.125 -1.5 285 | vertex -33.5 0 -1.5 286 | vertex -37 0.625 -1.5 287 | endloop 288 | endfacet 289 | facet normal 0 0 -1 290 | outer loop 291 | vertex -41 5.125 -1.5 292 | vertex -37 0.625 -1.5 293 | vertex -39.5 2.5 -1.5 294 | endloop 295 | endfacet 296 | facet normal 0 0 -1 297 | outer loop 298 | vertex -2.5 35 -1.5 299 | vertex 4.5 38 -1.5 300 | vertex 4.5 35 -1.5 301 | endloop 302 | endfacet 303 | facet normal 0 0 -1 304 | outer loop 305 | vertex 4.5 25 -1.5 306 | vertex -2.5 8 -1.5 307 | vertex -2.5 18 -1.5 308 | endloop 309 | endfacet 310 | facet normal -0.985212 0.171341 0 311 | outer loop 312 | vertex -41 40.875 1.5 313 | vertex -41 40.875 -1.5 314 | vertex -41.5 38 1.5 315 | endloop 316 | endfacet 317 | facet normal -0.985212 0.171341 0 318 | outer loop 319 | vertex -41.5 38 1.5 320 | vertex -41 40.875 -1.5 321 | vertex -41.5 38 -1.5 322 | endloop 323 | endfacet 324 | facet normal 0 0 1 325 | outer loop 326 | vertex -41.5 38 1.5 327 | vertex -41.5 8 1.5 328 | vertex -41 5.125 1.5 329 | endloop 330 | endfacet 331 | facet normal 0 0 1 332 | outer loop 333 | vertex -37 0.625 1.5 334 | vertex -41.5 38 1.5 335 | vertex -39.5 2.5 1.5 336 | endloop 337 | endfacet 338 | facet normal 0 0 1 339 | outer loop 340 | vertex -39.5 2.5 1.5 341 | vertex -41.5 38 1.5 342 | vertex -41 5.125 1.5 343 | endloop 344 | endfacet 345 | facet normal 0 0 1 346 | outer loop 347 | vertex -35.5 8 1.5 348 | vertex -41.5 38 1.5 349 | vertex -37 0.625 1.5 350 | endloop 351 | endfacet 352 | facet normal 0 0 1 353 | outer loop 354 | vertex -35 7.5 1.5 355 | vertex -35.5 8 1.5 356 | vertex -33.5 0 1.5 357 | endloop 358 | endfacet 359 | facet normal 0 0 1 360 | outer loop 361 | vertex -4.5 7 1.5 362 | vertex -4.5 0 1.5 363 | vertex -0.875 0.625 1.5 364 | endloop 365 | endfacet 366 | facet normal 0 0 1 367 | outer loop 368 | vertex -3.625 7.125 1.5 369 | vertex -4.5 7 1.5 370 | vertex 2 2.5 1.5 371 | endloop 372 | endfacet 373 | facet normal 0 0 1 374 | outer loop 375 | vertex -13.5 18 1.5 376 | vertex -2.5 18 1.5 377 | vertex -13.5 25 1.5 378 | endloop 379 | endfacet 380 | facet normal 0 0 1 381 | outer loop 382 | vertex -4.5 7 1.5 383 | vertex -33.5 7 1.5 384 | vertex -4.5 0 1.5 385 | endloop 386 | endfacet 387 | facet normal 0 0 1 388 | outer loop 389 | vertex 4.5 25 1.5 390 | vertex -2.5 18 1.5 391 | vertex 4.5 8 1.5 392 | endloop 393 | endfacet 394 | facet normal 0 0 1 395 | outer loop 396 | vertex 4.5 25 1.5 397 | vertex -13.5 25 1.5 398 | vertex -2.5 18 1.5 399 | endloop 400 | endfacet 401 | facet normal 0 0 1 402 | outer loop 403 | vertex 3.875 5.125 1.5 404 | vertex -2.5 8 1.5 405 | vertex 2 2.5 1.5 406 | endloop 407 | endfacet 408 | facet normal 0 0 1 409 | outer loop 410 | vertex -2.5 8 1.5 411 | vertex -3 7.5 1.5 412 | vertex 2 2.5 1.5 413 | endloop 414 | endfacet 415 | facet normal 0 0 1 416 | outer loop 417 | vertex -3 7.5 1.5 418 | vertex -3.625 7.125 1.5 419 | vertex 2 2.5 1.5 420 | endloop 421 | endfacet 422 | facet normal 0 0 1 423 | outer loop 424 | vertex 2 2.5 1.5 425 | vertex -4.5 7 1.5 426 | vertex -0.875 0.625 1.5 427 | endloop 428 | endfacet 429 | facet normal 0 0 1 430 | outer loop 431 | vertex -4.5 0 1.5 432 | vertex -33.5 7 1.5 433 | vertex -33.5 0 1.5 434 | endloop 435 | endfacet 436 | facet normal 0 0 1 437 | outer loop 438 | vertex -33.5 7 1.5 439 | vertex -34.375 7.125 1.5 440 | vertex -33.5 0 1.5 441 | endloop 442 | endfacet 443 | facet normal 0 0 1 444 | outer loop 445 | vertex -34.375 7.125 1.5 446 | vertex -35 7.5 1.5 447 | vertex -33.5 0 1.5 448 | endloop 449 | endfacet 450 | facet normal 0 0 1 451 | outer loop 452 | vertex -33.5 0 1.5 453 | vertex -35.5 8 1.5 454 | vertex -37 0.625 1.5 455 | endloop 456 | endfacet 457 | facet normal 0 0 1 458 | outer loop 459 | vertex -35 38.5 1.5 460 | vertex -41.5 38 1.5 461 | vertex -35.5 38 1.5 462 | endloop 463 | endfacet 464 | facet normal 0 0 1 465 | outer loop 466 | vertex -34.375 38.875 1.5 467 | vertex -41.5 38 1.5 468 | vertex -35 38.5 1.5 469 | endloop 470 | endfacet 471 | facet normal 0 0 1 472 | outer loop 473 | vertex -33.5 39 1.5 474 | vertex -41.5 38 1.5 475 | vertex -34.375 38.875 1.5 476 | endloop 477 | endfacet 478 | facet normal 0 0 1 479 | outer loop 480 | vertex 2 43.5 1.5 481 | vertex -41.5 38 1.5 482 | vertex -33.5 39 1.5 483 | endloop 484 | endfacet 485 | facet normal 0 0 1 486 | outer loop 487 | vertex -2.5 35 1.5 488 | vertex 4.5 35 1.5 489 | vertex -2.5 38 1.5 490 | endloop 491 | endfacet 492 | facet normal 0 0 1 493 | outer loop 494 | vertex 3.875 40.875 1.5 495 | vertex -33.5 39 1.5 496 | vertex -4.5 39 1.5 497 | endloop 498 | endfacet 499 | facet normal 0 0 1 500 | outer loop 501 | vertex 4.5 38 1.5 502 | vertex -4.5 39 1.5 503 | vertex -3.625 38.875 1.5 504 | endloop 505 | endfacet 506 | facet normal 0 0 1 507 | outer loop 508 | vertex 4.5 35 1.5 509 | vertex -3.625 38.875 1.5 510 | vertex -3 38.5 1.5 511 | endloop 512 | endfacet 513 | facet normal 0 0 1 514 | outer loop 515 | vertex 4.5 35 1.5 516 | vertex -3 38.5 1.5 517 | vertex -2.5 38 1.5 518 | endloop 519 | endfacet 520 | facet normal 0 0 1 521 | outer loop 522 | vertex 4.5 38 1.5 523 | vertex -3.625 38.875 1.5 524 | vertex 4.5 35 1.5 525 | endloop 526 | endfacet 527 | facet normal 0 0 1 528 | outer loop 529 | vertex 3.875 40.875 1.5 530 | vertex -4.5 39 1.5 531 | vertex 4.5 38 1.5 532 | endloop 533 | endfacet 534 | facet normal 0 0 1 535 | outer loop 536 | vertex 2 43.5 1.5 537 | vertex -33.5 39 1.5 538 | vertex 3.875 40.875 1.5 539 | endloop 540 | endfacet 541 | facet normal 0 0 1 542 | outer loop 543 | vertex -0.875 45.375 1.5 544 | vertex -41.5 38 1.5 545 | vertex 2 43.5 1.5 546 | endloop 547 | endfacet 548 | facet normal 0 0 1 549 | outer loop 550 | vertex -4.5 46 1.5 551 | vertex -41.5 38 1.5 552 | vertex -0.875 45.375 1.5 553 | endloop 554 | endfacet 555 | facet normal 0 0 1 556 | outer loop 557 | vertex -33.5 46 1.5 558 | vertex -41.5 38 1.5 559 | vertex -4.5 46 1.5 560 | endloop 561 | endfacet 562 | facet normal 0 0 1 563 | outer loop 564 | vertex -37 45.375 1.5 565 | vertex -41.5 38 1.5 566 | vertex -33.5 46 1.5 567 | endloop 568 | endfacet 569 | facet normal 0 0 1 570 | outer loop 571 | vertex -39.5 43.5 1.5 572 | vertex -41.5 38 1.5 573 | vertex -37 45.375 1.5 574 | endloop 575 | endfacet 576 | facet normal 0 0 1 577 | outer loop 578 | vertex -41 40.875 1.5 579 | vertex -41.5 38 1.5 580 | vertex -39.5 43.5 1.5 581 | endloop 582 | endfacet 583 | facet normal 0 0 1 584 | outer loop 585 | vertex -2.5 18 1.5 586 | vertex 3.875 5.125 1.5 587 | vertex 4.5 8 1.5 588 | endloop 589 | endfacet 590 | facet normal 0 0 1 591 | outer loop 592 | vertex -2.5 18 1.5 593 | vertex -2.5 8 1.5 594 | vertex 3.875 5.125 1.5 595 | endloop 596 | endfacet 597 | facet normal 0 0 1 598 | outer loop 599 | vertex -35.5 8 1.5 600 | vertex -35.5 38 1.5 601 | vertex -41.5 38 1.5 602 | endloop 603 | endfacet 604 | facet normal -0.868243 -0.496139 0 605 | outer loop 606 | vertex -39.5 2.5 1.5 607 | vertex -41 5.125 1.5 608 | vertex -39.5 2.5 -1.5 609 | endloop 610 | endfacet 611 | facet normal -0.868243 -0.496139 0 612 | outer loop 613 | vertex -39.5 2.5 -1.5 614 | vertex -41 5.125 1.5 615 | vertex -41 5.125 -1.5 616 | endloop 617 | endfacet 618 | facet normal -0.6 -0.8 0 619 | outer loop 620 | vertex -37 0.625 -1.5 621 | vertex -37 0.625 1.5 622 | vertex -39.5 2.5 1.5 623 | endloop 624 | endfacet 625 | facet normal -0.6 -0.8 0 626 | outer loop 627 | vertex -39.5 2.5 -1.5 628 | vertex -37 0.625 -1.5 629 | vertex -39.5 2.5 1.5 630 | endloop 631 | endfacet 632 | facet normal -0.175791 -0.984428 0 633 | outer loop 634 | vertex -33.5 0 -1.5 635 | vertex -33.5 0 1.5 636 | vertex -37 0.625 1.5 637 | endloop 638 | endfacet 639 | facet normal -0.175791 -0.984428 0 640 | outer loop 641 | vertex -37 0.625 -1.5 642 | vertex -33.5 0 -1.5 643 | vertex -37 0.625 1.5 644 | endloop 645 | endfacet 646 | facet normal 0 -1 0 647 | outer loop 648 | vertex -33.5 0 1.5 649 | vertex -33.5 0 -1.5 650 | vertex -4.5 0 -1.5 651 | endloop 652 | endfacet 653 | facet normal 0 -1 0 654 | outer loop 655 | vertex -4.5 0 1.5 656 | vertex -33.5 0 1.5 657 | vertex -4.5 0 -1.5 658 | endloop 659 | endfacet 660 | facet normal 0.169907 -0.98546 0 661 | outer loop 662 | vertex -0.875 0.625 -1.5 663 | vertex -0.875 0.625 1.5 664 | vertex -4.5 0 1.5 665 | endloop 666 | endfacet 667 | facet normal 0.169907 -0.98546 0 668 | outer loop 669 | vertex -4.5 0 -1.5 670 | vertex -0.875 0.625 -1.5 671 | vertex -4.5 0 1.5 672 | endloop 673 | endfacet 674 | facet normal 0.546268 -0.837611 0 675 | outer loop 676 | vertex 2 2.5 -1.5 677 | vertex 2 2.5 1.5 678 | vertex -0.875 0.625 1.5 679 | endloop 680 | endfacet 681 | facet normal 0.546268 -0.837611 0 682 | outer loop 683 | vertex -0.875 0.625 -1.5 684 | vertex 2 2.5 -1.5 685 | vertex -0.875 0.625 1.5 686 | endloop 687 | endfacet 688 | facet normal 0.813733 -0.581238 0 689 | outer loop 690 | vertex 3.875 5.125 -1.5 691 | vertex 3.875 5.125 1.5 692 | vertex 2 2.5 1.5 693 | endloop 694 | endfacet 695 | facet normal 0.813733 -0.581238 0 696 | outer loop 697 | vertex 2 2.5 -1.5 698 | vertex 3.875 5.125 -1.5 699 | vertex 2 2.5 1.5 700 | endloop 701 | endfacet 702 | facet normal 0.977176 -0.21243 0 703 | outer loop 704 | vertex 4.5 8 -1.5 705 | vertex 4.5 8 1.5 706 | vertex 3.875 5.125 1.5 707 | endloop 708 | endfacet 709 | facet normal 0.977176 -0.21243 0 710 | outer loop 711 | vertex 3.875 5.125 -1.5 712 | vertex 4.5 8 -1.5 713 | vertex 3.875 5.125 1.5 714 | endloop 715 | endfacet 716 | facet normal 1 0 0 717 | outer loop 718 | vertex 4.5 8 1.5 719 | vertex 4.5 8 -1.5 720 | vertex 4.5 25 -1.5 721 | endloop 722 | endfacet 723 | facet normal 1 0 0 724 | outer loop 725 | vertex 4.5 25 1.5 726 | vertex 4.5 8 1.5 727 | vertex 4.5 25 -1.5 728 | endloop 729 | endfacet 730 | facet normal 0 1 0 731 | outer loop 732 | vertex -13.5 25 -1.5 733 | vertex -13.5 25 1.5 734 | vertex 4.5 25 -1.5 735 | endloop 736 | endfacet 737 | facet normal 0 1 0 738 | outer loop 739 | vertex 4.5 25 -1.5 740 | vertex -13.5 25 1.5 741 | vertex 4.5 25 1.5 742 | endloop 743 | endfacet 744 | facet normal -1 0 0 745 | outer loop 746 | vertex -13.5 18 -1.5 747 | vertex -13.5 18 1.5 748 | vertex -13.5 25 -1.5 749 | endloop 750 | endfacet 751 | facet normal -1 0 0 752 | outer loop 753 | vertex -13.5 25 -1.5 754 | vertex -13.5 18 1.5 755 | vertex -13.5 25 1.5 756 | endloop 757 | endfacet 758 | facet normal 0 -1 0 759 | outer loop 760 | vertex -13.5 18 1.5 761 | vertex -13.5 18 -1.5 762 | vertex -2.5 18 -1.5 763 | endloop 764 | endfacet 765 | facet normal 0 -1 0 766 | outer loop 767 | vertex -2.5 18 1.5 768 | vertex -13.5 18 1.5 769 | vertex -2.5 18 -1.5 770 | endloop 771 | endfacet 772 | facet normal -1 0 0 773 | outer loop 774 | vertex -2.5 8 -1.5 775 | vertex -2.5 8 1.5 776 | vertex -2.5 18 -1.5 777 | endloop 778 | endfacet 779 | facet normal -1 0 0 780 | outer loop 781 | vertex -2.5 18 -1.5 782 | vertex -2.5 8 1.5 783 | vertex -2.5 18 1.5 784 | endloop 785 | endfacet 786 | facet normal -0.707107 0.707107 0 787 | outer loop 788 | vertex -3 7.5 -1.5 789 | vertex -3 7.5 1.5 790 | vertex -2.5 8 -1.5 791 | endloop 792 | endfacet 793 | facet normal -0.707107 0.707107 0 794 | outer loop 795 | vertex -2.5 8 -1.5 796 | vertex -3 7.5 1.5 797 | vertex -2.5 8 1.5 798 | endloop 799 | endfacet 800 | facet normal -0.514496 0.857493 0 801 | outer loop 802 | vertex -3.625 7.125 -1.5 803 | vertex -3.625 7.125 1.5 804 | vertex -3 7.5 -1.5 805 | endloop 806 | endfacet 807 | facet normal -0.514496 0.857493 0 808 | outer loop 809 | vertex -3 7.5 -1.5 810 | vertex -3.625 7.125 1.5 811 | vertex -3 7.5 1.5 812 | endloop 813 | endfacet 814 | facet normal -0.141421 0.989949 0 815 | outer loop 816 | vertex -4.5 7 -1.5 817 | vertex -4.5 7 1.5 818 | vertex -3.625 7.125 -1.5 819 | endloop 820 | endfacet 821 | facet normal -0.141421 0.989949 0 822 | outer loop 823 | vertex -3.625 7.125 -1.5 824 | vertex -4.5 7 1.5 825 | vertex -3.625 7.125 1.5 826 | endloop 827 | endfacet 828 | facet normal 0 1 0 829 | outer loop 830 | vertex -33.5 7 -1.5 831 | vertex -33.5 7 1.5 832 | vertex -4.5 7 -1.5 833 | endloop 834 | endfacet 835 | facet normal 0 1 0 836 | outer loop 837 | vertex -4.5 7 -1.5 838 | vertex -33.5 7 1.5 839 | vertex -4.5 7 1.5 840 | endloop 841 | endfacet 842 | facet normal 0.141421 0.989949 0 843 | outer loop 844 | vertex -34.375 7.125 -1.5 845 | vertex -34.375 7.125 1.5 846 | vertex -33.5 7 -1.5 847 | endloop 848 | endfacet 849 | facet normal 0.141421 0.989949 0 850 | outer loop 851 | vertex -33.5 7 -1.5 852 | vertex -34.375 7.125 1.5 853 | vertex -33.5 7 1.5 854 | endloop 855 | endfacet 856 | facet normal 0.514496 0.857493 0 857 | outer loop 858 | vertex -35 7.5 -1.5 859 | vertex -35 7.5 1.5 860 | vertex -34.375 7.125 -1.5 861 | endloop 862 | endfacet 863 | facet normal 0.514496 0.857493 0 864 | outer loop 865 | vertex -34.375 7.125 -1.5 866 | vertex -35 7.5 1.5 867 | vertex -34.375 7.125 1.5 868 | endloop 869 | endfacet 870 | facet normal 0.707107 0.707107 0 871 | outer loop 872 | vertex -35.5 8 -1.5 873 | vertex -35.5 8 1.5 874 | vertex -35 7.5 -1.5 875 | endloop 876 | endfacet 877 | facet normal 0.707107 0.707107 0 878 | outer loop 879 | vertex -35 7.5 -1.5 880 | vertex -35.5 8 1.5 881 | vertex -35 7.5 1.5 882 | endloop 883 | endfacet 884 | facet normal 1 0 0 885 | outer loop 886 | vertex -35.5 8 1.5 887 | vertex -35.5 8 -1.5 888 | vertex -35.5 38 -1.5 889 | endloop 890 | endfacet 891 | facet normal 1 0 0 892 | outer loop 893 | vertex -35.5 38 1.5 894 | vertex -35.5 8 1.5 895 | vertex -35.5 38 -1.5 896 | endloop 897 | endfacet 898 | facet normal 0.707107 -0.707107 0 899 | outer loop 900 | vertex -35.5 38 1.5 901 | vertex -35.5 38 -1.5 902 | vertex -35 38.5 -1.5 903 | endloop 904 | endfacet 905 | facet normal 0.707107 -0.707107 0 906 | outer loop 907 | vertex -35 38.5 1.5 908 | vertex -35.5 38 1.5 909 | vertex -35 38.5 -1.5 910 | endloop 911 | endfacet 912 | facet normal 0.514496 -0.857493 0 913 | outer loop 914 | vertex -35 38.5 1.5 915 | vertex -35 38.5 -1.5 916 | vertex -34.375 38.875 -1.5 917 | endloop 918 | endfacet 919 | facet normal 0.514496 -0.857493 0 920 | outer loop 921 | vertex -34.375 38.875 1.5 922 | vertex -35 38.5 1.5 923 | vertex -34.375 38.875 -1.5 924 | endloop 925 | endfacet 926 | facet normal 0.141421 -0.989949 0 927 | outer loop 928 | vertex -34.375 38.875 1.5 929 | vertex -34.375 38.875 -1.5 930 | vertex -33.5 39 -1.5 931 | endloop 932 | endfacet 933 | facet normal 0.141421 -0.989949 0 934 | outer loop 935 | vertex -33.5 39 1.5 936 | vertex -34.375 38.875 1.5 937 | vertex -33.5 39 -1.5 938 | endloop 939 | endfacet 940 | facet normal 0 -1 0 941 | outer loop 942 | vertex -33.5 39 1.5 943 | vertex -33.5 39 -1.5 944 | vertex -4.5 39 -1.5 945 | endloop 946 | endfacet 947 | facet normal 0 -1 0 948 | outer loop 949 | vertex -4.5 39 1.5 950 | vertex -33.5 39 1.5 951 | vertex -4.5 39 -1.5 952 | endloop 953 | endfacet 954 | facet normal -0.141421 -0.989949 0 955 | outer loop 956 | vertex -4.5 39 1.5 957 | vertex -4.5 39 -1.5 958 | vertex -3.625 38.875 -1.5 959 | endloop 960 | endfacet 961 | facet normal -0.141421 -0.989949 0 962 | outer loop 963 | vertex -3.625 38.875 1.5 964 | vertex -4.5 39 1.5 965 | vertex -3.625 38.875 -1.5 966 | endloop 967 | endfacet 968 | facet normal -0.514496 -0.857493 0 969 | outer loop 970 | vertex -3.625 38.875 1.5 971 | vertex -3.625 38.875 -1.5 972 | vertex -3 38.5 -1.5 973 | endloop 974 | endfacet 975 | facet normal -0.514496 -0.857493 0 976 | outer loop 977 | vertex -3 38.5 1.5 978 | vertex -3.625 38.875 1.5 979 | vertex -3 38.5 -1.5 980 | endloop 981 | endfacet 982 | facet normal -0.707107 -0.707107 0 983 | outer loop 984 | vertex -3 38.5 1.5 985 | vertex -3 38.5 -1.5 986 | vertex -2.5 38 -1.5 987 | endloop 988 | endfacet 989 | facet normal -0.707107 -0.707107 0 990 | outer loop 991 | vertex -2.5 38 1.5 992 | vertex -3 38.5 1.5 993 | vertex -2.5 38 -1.5 994 | endloop 995 | endfacet 996 | facet normal -1 0 0 997 | outer loop 998 | vertex -2.5 35 -1.5 999 | vertex -2.5 35 1.5 1000 | vertex -2.5 38 -1.5 1001 | endloop 1002 | endfacet 1003 | facet normal -1 0 0 1004 | outer loop 1005 | vertex -2.5 38 -1.5 1006 | vertex -2.5 35 1.5 1007 | vertex -2.5 38 1.5 1008 | endloop 1009 | endfacet 1010 | facet normal 0 -1 0 1011 | outer loop 1012 | vertex -2.5 35 1.5 1013 | vertex -2.5 35 -1.5 1014 | vertex 4.5 35 -1.5 1015 | endloop 1016 | endfacet 1017 | facet normal 0 -1 0 1018 | outer loop 1019 | vertex 4.5 35 1.5 1020 | vertex -2.5 35 1.5 1021 | vertex 4.5 35 -1.5 1022 | endloop 1023 | endfacet 1024 | facet normal 1 0 0 1025 | outer loop 1026 | vertex 4.5 35 1.5 1027 | vertex 4.5 35 -1.5 1028 | vertex 4.5 38 -1.5 1029 | endloop 1030 | endfacet 1031 | facet normal 1 0 0 1032 | outer loop 1033 | vertex 4.5 38 1.5 1034 | vertex 4.5 35 1.5 1035 | vertex 4.5 38 -1.5 1036 | endloop 1037 | endfacet 1038 | facet normal 0.977176 0.21243 0 1039 | outer loop 1040 | vertex 3.875 40.875 1.5 1041 | vertex 4.5 38 1.5 1042 | vertex 4.5 38 -1.5 1043 | endloop 1044 | endfacet 1045 | facet normal 0.977176 0.21243 0 1046 | outer loop 1047 | vertex 3.875 40.875 -1.5 1048 | vertex 3.875 40.875 1.5 1049 | vertex 4.5 38 -1.5 1050 | endloop 1051 | endfacet 1052 | facet normal 0.813733 0.581238 0 1053 | outer loop 1054 | vertex 2 43.5 1.5 1055 | vertex 3.875 40.875 1.5 1056 | vertex 3.875 40.875 -1.5 1057 | endloop 1058 | endfacet 1059 | facet normal 0.813733 0.581238 0 1060 | outer loop 1061 | vertex 2 43.5 -1.5 1062 | vertex 2 43.5 1.5 1063 | vertex 3.875 40.875 -1.5 1064 | endloop 1065 | endfacet 1066 | facet normal 0.546268 0.837611 0 1067 | outer loop 1068 | vertex 2 43.5 1.5 1069 | vertex 2 43.5 -1.5 1070 | vertex -0.875 45.375 1.5 1071 | endloop 1072 | endfacet 1073 | facet normal 0.546268 0.837611 0 1074 | outer loop 1075 | vertex -0.875 45.375 1.5 1076 | vertex 2 43.5 -1.5 1077 | vertex -0.875 45.375 -1.5 1078 | endloop 1079 | endfacet 1080 | facet normal 0.169907 0.98546 0 1081 | outer loop 1082 | vertex -0.875 45.375 1.5 1083 | vertex -0.875 45.375 -1.5 1084 | vertex -4.5 46 1.5 1085 | endloop 1086 | endfacet 1087 | facet normal 0.169907 0.98546 0 1088 | outer loop 1089 | vertex -4.5 46 1.5 1090 | vertex -0.875 45.375 -1.5 1091 | vertex -4.5 46 -1.5 1092 | endloop 1093 | endfacet 1094 | facet normal 0 1 0 1095 | outer loop 1096 | vertex -33.5 46 -1.5 1097 | vertex -33.5 46 1.5 1098 | vertex -4.5 46 -1.5 1099 | endloop 1100 | endfacet 1101 | facet normal 0 1 0 1102 | outer loop 1103 | vertex -4.5 46 -1.5 1104 | vertex -33.5 46 1.5 1105 | vertex -4.5 46 1.5 1106 | endloop 1107 | endfacet 1108 | facet normal -0.175791 0.984428 0 1109 | outer loop 1110 | vertex -33.5 46 1.5 1111 | vertex -33.5 46 -1.5 1112 | vertex -37 45.375 1.5 1113 | endloop 1114 | endfacet 1115 | facet normal -0.175791 0.984428 0 1116 | outer loop 1117 | vertex -37 45.375 1.5 1118 | vertex -33.5 46 -1.5 1119 | vertex -37 45.375 -1.5 1120 | endloop 1121 | endfacet 1122 | facet normal -0.6 0.8 0 1123 | outer loop 1124 | vertex -37 45.375 1.5 1125 | vertex -37 45.375 -1.5 1126 | vertex -39.5 43.5 1.5 1127 | endloop 1128 | endfacet 1129 | facet normal -0.6 0.8 0 1130 | outer loop 1131 | vertex -39.5 43.5 1.5 1132 | vertex -37 45.375 -1.5 1133 | vertex -39.5 43.5 -1.5 1134 | endloop 1135 | endfacet 1136 | facet normal -0.868243 0.496139 0 1137 | outer loop 1138 | vertex -39.5 43.5 1.5 1139 | vertex -39.5 43.5 -1.5 1140 | vertex -41 40.875 1.5 1141 | endloop 1142 | endfacet 1143 | facet normal -0.868243 0.496139 0 1144 | outer loop 1145 | vertex -41 40.875 1.5 1146 | vertex -39.5 43.5 -1.5 1147 | vertex -41 40.875 -1.5 1148 | endloop 1149 | endfacet 1150 | facet normal 0 -1 0 1151 | outer loop 1152 | vertex 14.5 31 1.5 1153 | vertex 14.5 31 -1.5 1154 | vertex 23.5 31 -1.5 1155 | endloop 1156 | endfacet 1157 | facet normal 0 -1 0 1158 | outer loop 1159 | vertex 23.5 31 1.5 1160 | vertex 14.5 31 1.5 1161 | vertex 23.5 31 -1.5 1162 | endloop 1163 | endfacet 1164 | facet normal 0 0 -1 1165 | outer loop 1166 | vertex 14.5 31 -1.5 1167 | vertex 27.5 46 -1.5 1168 | vertex 23.5 31 -1.5 1169 | endloop 1170 | endfacet 1171 | facet normal 0 0 -1 1172 | outer loop 1173 | vertex 23.5 31 -1.5 1174 | vertex 27.5 46 -1.5 1175 | vertex 35.5 46 -1.5 1176 | endloop 1177 | endfacet 1178 | facet normal 0 0 -1 1179 | outer loop 1180 | vertex 28.5 37 -1.5 1181 | vertex 35.5 46 -1.5 1182 | vertex 35.5 0 -1.5 1183 | endloop 1184 | endfacet 1185 | facet normal 0 0 -1 1186 | outer loop 1187 | vertex 23.5 31 -1.5 1188 | vertex 35.5 46 -1.5 1189 | vertex 28.5 37 -1.5 1190 | endloop 1191 | endfacet 1192 | facet normal 0 0 -1 1193 | outer loop 1194 | vertex 28.5 37 -1.5 1195 | vertex 35.5 0 -1.5 1196 | vertex 28.5 0 -1.5 1197 | endloop 1198 | endfacet 1199 | facet normal -0.755689 0.654931 0 1200 | outer loop 1201 | vertex 14.5 31 -1.5 1202 | vertex 14.5 31 1.5 1203 | vertex 27.5 46 -1.5 1204 | endloop 1205 | endfacet 1206 | facet normal -0.755689 0.654931 0 1207 | outer loop 1208 | vertex 27.5 46 -1.5 1209 | vertex 14.5 31 1.5 1210 | vertex 27.5 46 1.5 1211 | endloop 1212 | endfacet 1213 | facet normal 0 0 1 1214 | outer loop 1215 | vertex 27.5 46 1.5 1216 | vertex 14.5 31 1.5 1217 | vertex 23.5 31 1.5 1218 | endloop 1219 | endfacet 1220 | facet normal 0 0 1 1221 | outer loop 1222 | vertex 35.5 0 1.5 1223 | vertex 27.5 46 1.5 1224 | vertex 28.5 37 1.5 1225 | endloop 1226 | endfacet 1227 | facet normal 0 0 1 1228 | outer loop 1229 | vertex 28.5 37 1.5 1230 | vertex 27.5 46 1.5 1231 | vertex 23.5 31 1.5 1232 | endloop 1233 | endfacet 1234 | facet normal 0 0 1 1235 | outer loop 1236 | vertex 35.5 0 1.5 1237 | vertex 28.5 37 1.5 1238 | vertex 28.5 0 1.5 1239 | endloop 1240 | endfacet 1241 | facet normal 0 0 1 1242 | outer loop 1243 | vertex 35.5 46 1.5 1244 | vertex 27.5 46 1.5 1245 | vertex 35.5 0 1.5 1246 | endloop 1247 | endfacet 1248 | facet normal 0.768221 -0.640184 0 1249 | outer loop 1250 | vertex 23.5 31 1.5 1251 | vertex 23.5 31 -1.5 1252 | vertex 28.5 37 -1.5 1253 | endloop 1254 | endfacet 1255 | facet normal 0.768221 -0.640184 0 1256 | outer loop 1257 | vertex 28.5 37 1.5 1258 | vertex 23.5 31 1.5 1259 | vertex 28.5 37 -1.5 1260 | endloop 1261 | endfacet 1262 | facet normal -1 0 0 1263 | outer loop 1264 | vertex 28.5 0 -1.5 1265 | vertex 28.5 0 1.5 1266 | vertex 28.5 37 -1.5 1267 | endloop 1268 | endfacet 1269 | facet normal -1 0 0 1270 | outer loop 1271 | vertex 28.5 37 -1.5 1272 | vertex 28.5 0 1.5 1273 | vertex 28.5 37 1.5 1274 | endloop 1275 | endfacet 1276 | facet normal 0 -1 0 1277 | outer loop 1278 | vertex 28.5 0 1.5 1279 | vertex 28.5 0 -1.5 1280 | vertex 35.5 0 -1.5 1281 | endloop 1282 | endfacet 1283 | facet normal 0 -1 0 1284 | outer loop 1285 | vertex 35.5 0 1.5 1286 | vertex 28.5 0 1.5 1287 | vertex 35.5 0 -1.5 1288 | endloop 1289 | endfacet 1290 | facet normal 1 0 0 1291 | outer loop 1292 | vertex 35.5 0 1.5 1293 | vertex 35.5 0 -1.5 1294 | vertex 35.5 46 -1.5 1295 | endloop 1296 | endfacet 1297 | facet normal 1 0 0 1298 | outer loop 1299 | vertex 35.5 46 1.5 1300 | vertex 35.5 0 1.5 1301 | vertex 35.5 46 -1.5 1302 | endloop 1303 | endfacet 1304 | facet normal 0 1 0 1305 | outer loop 1306 | vertex 27.5 46 -1.5 1307 | vertex 27.5 46 1.5 1308 | vertex 35.5 46 -1.5 1309 | endloop 1310 | endfacet 1311 | facet normal 0 1 0 1312 | outer loop 1313 | vertex 35.5 46 -1.5 1314 | vertex 27.5 46 1.5 1315 | vertex 35.5 46 1.5 1316 | endloop 1317 | endfacet 1318 | endsolid OpenSCAD_Model 1319 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | --------------------------------------------------------------------------------