diff options
author | Marius Kintel <marius@kintel.net> | 2011-12-26 18:15:51 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-12-26 18:15:51 (GMT) |
commit | bc3454f369a21cd689f42f5e9ec5cb316f9ebdd5 (patch) | |
tree | 9794056684d42b7dd4b955160c6e83fa694e0729 /openscad.pro | |
parent | 9e6cc9cebbfd5007a5fa9afabf57476676357193 (diff) |
Refactored normalization into a separate class, hard-limited normalization to stop at 5000 nodes to keep from normalizing 'forever'
Diffstat (limited to 'openscad.pro')
-rw-r--r-- | openscad.pro | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/openscad.pro b/openscad.pro index 344363a..0feca74 100644 --- a/openscad.pro +++ b/openscad.pro @@ -146,6 +146,7 @@ HEADERS += src/renderer.h \ src/builtin.h \ src/context.h \ src/csgterm.h \ + src/csgtermnormalizer.h \ src/dxfdata.h \ src/dxfdim.h \ src/dxftess.h \ @@ -197,6 +198,7 @@ SOURCES += src/mathc99.cc \ src/node.cc \ src/context.cc \ src/csgterm.cc \ + src/csgtermnormalizer.cc \ src/polyset.cc \ src/csgops.cc \ src/transform.cc \ |