diff options
author | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2009-07-22 09:46:13 (GMT) |
---|---|---|
committer | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2009-07-22 09:46:13 (GMT) |
commit | bb15d75642157364bd6a9a65b224f37b93d0b2f0 (patch) | |
tree | 949b77755c2e373a2988bbaf1ea134e23da3057a | |
parent | d60feb90aa10916310bf086ea2c230b3492d6e08 (diff) |
Clifford Wolf:
Tiny center dxflinextrude bugfix
git-svn-id: http://svn.clifford.at/openscad/trunk@66 b57f626f-c46c-0410-a088-ec61d464b74c
-rw-r--r-- | dxflinextrude.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dxflinextrude.cc b/dxflinextrude.cc index 8afbcf2..9e714c4 100644 --- a/dxflinextrude.cc +++ b/dxflinextrude.cc @@ -136,7 +136,7 @@ PolySet *DxfLinearExtrudeNode::render_polyset(render_mode_e) const if (center) { h1 = -height/2.0; - h2 = -height/2.0; + h2 = +height/2.0; } else { h1 = 0; h2 = height; |