added two implementations of intersection() (untested)

This commit is contained in:
Elmom 2010-08-15 12:34:43 +03:00
parent 951c9dd565
commit ce3806d619

View file

@ -23,6 +23,27 @@ function angle(v) = angleOfNormalizedVector(normalized(v));
function angleBetweenTwoPoints(a, b) = angle(normalized(b-a)); function angleBetweenTwoPoints(a, b) = angle(normalized(b-a));
// Untested
module intersection(big_number=1000000000){
difference(){
child(0);
difference(){
cube(big_number, center=true);
child(1);
}
}
}
module intersection2(){
difference(){
child(0);
difference(){
child(0);
child(1);
}
}
}
CENTER = 0; CENTER = 0;
LEFT = -0.5; LEFT = -0.5;