diff options
author | kintel <kintel@b57f626f-c46c-0410-a088-ec61d464b74c> | 2010-01-21 11:25:46 (GMT) |
---|---|---|
committer | kintel <kintel@b57f626f-c46c-0410-a088-ec61d464b74c> | 2010-01-21 11:25:46 (GMT) |
commit | 135370d418b01ea2aab8fa20ea30b20a04f893b0 (patch) | |
tree | a663ef02b4f3df03db0e7d77e709c85b37d59a0c /openscad.h | |
parent | 16de8939075496b1ed1451b3c34032c25b94b108 (diff) |
Added support for aligned, ordinate, radius and diameter DIMENSION entities
git-svn-id: http://svn.clifford.at/openscad/trunk@326 b57f626f-c46c-0410-a088-ec61d464b74c
Diffstat (limited to 'openscad.h')
-rw-r--r-- | openscad.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -440,12 +440,15 @@ public: unsigned int type; double coords[7][2]; double angle; + double length; QString name; Dim() { for (int i = 0; i < 7; i++) for (int j = 0; j < 2; j++) coords[i][j] = 0; type = 0; + angle = 0; + length = 0; } }; |