Files
snappy-reprap/config.scad
2014-08-30 22:03:55 -07:00

37 lines
814 B
OpenSCAD

snappy_version = 0.90;
platform_length = 100; // mm
platform_width = 150; // mm
platform_height = 40; // mm
platform_thick = 7; // mm
rack_tooth_size = 5; // mm per tooth.
rail_length = 150; // mm
rail_height = 50; // mm
rail_thick = 7; // mm
motor_rail_length = 100; // mm
roller_thick = 12; // mm
roller_diam = 30; // mm
roller_axle = 15; // mm
roller_base = 12; // mm
roller_angle = 30; // degrees
joiner_angle = 35; // degrees
joiner_width = 10; // mm
joiner_slop = 0.5; // mm
// Commonly used derived values. Don't change these.
rail_spacing = platform_width - joiner_width*4 - 10;
roller_spacing = rail_spacing-roller_diam+0.5;
rail_width = rail_spacing + joiner_width*2;
// vim: noexpandtab tabstop=4 shiftwidth=4 softtabstop=4 nowrap