aboutsummaryrefslogtreecommitdiff
path: root/supports/runner_generator.scad
blob: c33f68039146564a20f65ef029719ea53eb1aa2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use <../lib/runner.scad>;

// OpenSCAD's default unit is millimeter

length = 100;
width = 150;
frequency = 10;
thickness = 1;
height = 0.1;

runner(
	length = length,
	width = width,
	frequency = frequency,
	thickness = thickness,
	height = height
);