mergin on up

This commit is contained in:
Robert Sheldon 2018-06-24 17:29:09 -04:00
commit e6b8943cfb
31 changed files with 1145 additions and 1149 deletions

View File

@ -9,10 +9,11 @@ module dsa_row(n=3) {
$top_tilt = n == 5 ? -21 : (n-3) * 7;
$top_skew = 0;
$dish_type = "spherical";
$dish_depth = 1;
$dish_depth = 1.2;
$dish_skew_x = 0;
$dish_skew_y = 0;
$height_slices = 10;
$enable_side_sculpting = true;
// might wanna change this if you don't minkowski
// do you even minkowski bro
$corner_radius = 0.25;

View File

@ -78,4 +78,3 @@ example:
module arrow(l=1,w=.6,t=0.15) {
mirror_y() polygon([[0,0],[l,0],[l-w/2,w/2],[l-w/2-sqrt(2)*t,w/2],[l-t/2-sqrt(2)*t,t/2],[0,t/2]]);
}

View File

@ -108,6 +108,3 @@ for(t=[0:0.05:len(__s3)]) translate(spline(__s3, t)) {
translate([0,0,9]) for(t=[0:0.025:len(__s3)])
multmatrix(spline_transform(__s3,t)) cube([1,1,0.1],center=true);

View File

@ -86,4 +86,3 @@ function trajectories_length(trajectories, i_=0) = i_ >= len(trajectories) ? 0
function trajectories_end_position(rt,i_=0,last_=identity4()) =
i_ >= len(rt) ? last_ :
trajectories_end_position(rt, i_+1, last_ * se3_exp(rt[i_]));