Skip to content

Commit

Permalink
Fix missing lkerf translation in validate/final phase.
Browse files Browse the repository at this point in the history
  • Loading branch information
mbugert committed Sep 10, 2017
1 parent cd99443 commit a46d7aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dist/laserscad.scad
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ module _lpart_sane(id, dims) {
ext_dims = dims + 2 * (lkerf + lmargin) * [1,1];
echo(str("[laserscad] ##",id,",",ext_dims[0],",",ext_dims[1],"##"));
} else {
translate(_lpart_translation(id) + lmargin*[1,1,0]) {
translate(_lpart_translation(id) + (lkerf + lmargin)*[1,1,0]) {
// show the bounding box if in validate mode
if (_laserscad_mode == 2) {
color("magenta", 0.6)
Expand Down

0 comments on commit a46d7aa

Please sign in to comment.