KeyV2/keys.scad

25 lines
770 B
OpenSCAD
Raw Normal View History

// the point of this file is to be a sort of DSL for constructing keycaps.
// when you create a method chain you are just changing the parameters
// key.scad uses, it doesn't generate anything itself until the end. This
// lets it remain easy to use key.scad like before (except without key profiles)
// without having to rely on this file. Unfortunately that means setting tons of
// special variables, but that's a limitation of SCAD we have to work around
use <src/key.scad>
include <src/settings.scad>
2018-02-05 07:43:17 +11:00
include <src/key_sizes.scad>
include <src/key_profiles.scad>
include <src/key_types.scad>
include <src/key_transformations.scad>
//$has_brim=true;
$inverted_dish = true;
$key_length = 6;
dcs_row(3) {
$dish_type = "sideways cylindrical";
key();
}