Would help to include the code!

This commit is contained in:
Chris Palmer 2019-07-29 20:43:03 +01:00
parent 645ff21d3d
commit 8583f5472d
1 changed files with 4 additions and 0 deletions

View File

@ -63,6 +63,10 @@ module semi_circle(r, d = undef) //! A semi circle in the pos
square([2 * sq, sq]);
}
module right_triangle(width, height, h, center = true) //! A right angled triangle with the 90° corner at the origin. 3D when ```h``` is nonzero, otherwise 2D
extrude_if(h, center = center)
polygon(points = [[0,0], [width, 0], [0, height]]);
include <sphere.scad>
include <bom.scad>
include <polyholes.scad>