diff options
author | Don Bright <hugh.m.bright@gmail.com> | 2012-02-14 00:43:38 (GMT) |
---|---|---|
committer | Don Bright <hugh.m.bright@gmail.com> | 2012-02-14 00:43:38 (GMT) |
commit | 319364b59790140b607a0f2af6d6b7e1ab068f51 (patch) | |
tree | fe2ea7cf8d150a27894b80ce18fbdaf35e3f27e6 /src/polyset.h | |
parent | a76d5b02bdb8cd7a9d32c2e204c86726d1384c63 (diff) |
use shared_ptr in shell visitor. add dump() code. hide debug cout.
Diffstat (limited to 'src/polyset.h')
-rw-r--r-- | src/polyset.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/polyset.h b/src/polyset.h index 09a13cb..4ca57bf 100644 --- a/src/polyset.h +++ b/src/polyset.h @@ -5,6 +5,7 @@ #include "grid.h" #include "linalg.h" #include <vector> +#include <string> class PolySet { @@ -40,6 +41,7 @@ public: void render_surface(csgmode_e csgmode, const Transform3d &m, GLint *shaderinfo = NULL) const; void render_edges(csgmode_e csgmode) const; + std::string dump() const; }; #endif |