diff options
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; } }; |