Skip to content

Commit

Permalink
Small adjustments to help rendering faster. Using high only where nee…
Browse files Browse the repository at this point in the history
…ded.
  • Loading branch information
Philip Stubbs committed Dec 8, 2014
1 parent 0221787 commit a473b61
Show file tree
Hide file tree
Showing 4 changed files with 6,461 additions and 33,116 deletions.
4 changes: 2 additions & 2 deletions scad/charger.scad
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
$fn=32;
include <utils.scad>;
use <utils.scad>;

module charger()
{
Expand All @@ -20,7 +20,7 @@ module charger()
cube([48,10,6],center=false);
translate([0,0,-5.5])
rotate([0,90,0])
cylinder(h=100, r1=1.5, r2=1.5);
cylinder(h=70, r1=1.5, r2=1.5);
}
}

Expand Down
4 changes: 2 additions & 2 deletions scad/cylinderR.scad
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ module cylinderR(h=10,r1=5,r2=7,radius=3,center=false){
hull(){
union(){
translate([0,0,r])
rotate_extrude(convexity = 10)
rotate_extrude(convexity = 10, $fn=96)
translate([r1-r, 0, 0])
circle(r = r);
translate([0,0,h-r])
rotate_extrude(convexity = 10)
rotate_extrude(convexity = 10, $fn=96)
translate([r2-r, 0, 0])
circle(r = r);
}
Expand Down
7 changes: 4 additions & 3 deletions scad/stand.scad
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
$fs=0.5;
use <cubeR.scad>;
use <cylinderR.scad>;
use <charger.scad>;
$fn=96;


union(){
translate([-25,0,-9.3])
Expand All @@ -26,8 +27,8 @@ union(){
cylinderR(h=20,r1=333,r2=330.9,center=true);
scale([1.02,1.02,1.02])
charger();
translate([75,0,-27])
cubeR([150,12,70],radius=1,center=true);
translate([40,0,-27])
cubeR([80,12,70],radius=1,center=true);
translate([0,0,-38])
cubeR([200,48,70],radius=20,center=true);
rotate([0,-30,0])
Expand Down
Loading

0 comments on commit a473b61

Please sign in to comment.