mirror of
https://github.com/Klipper3d/klipper.git
synced 2025-08-08 06:24:03 -06:00
docs: Add initial Pressure Advance tuning document
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
1f417a8441
commit
db5b5f121c
8 changed files with 324 additions and 7 deletions
14
docs/prints/square.scad
Normal file
14
docs/prints/square.scad
Normal file
|
@ -0,0 +1,14 @@
|
|||
// Test square
|
||||
//
|
||||
// Generate STL using OpenSCAD:
|
||||
// openscad square.scad -o square.stl
|
||||
|
||||
square_width = 5;
|
||||
square_size = 60;
|
||||
square_height = 5;
|
||||
|
||||
difference() {
|
||||
cube([square_size, square_size, square_height]);
|
||||
translate([square_width, square_width, -1])
|
||||
cube([square_size-2*square_width, square_size-2*square_width, square_height+2]);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue