diff options
author | don bright <hugh.m.bright@gmail.com> | 2013-02-01 01:48:33 (GMT) |
---|---|---|
committer | don bright <hugh.m.bright@gmail.com> | 2013-02-01 01:48:33 (GMT) |
commit | b911a3615e7c28f3448ca73d7f48a263a568c00c (patch) | |
tree | 0799e22e781218ee43033757202ef77e05854c0e /src/CsgInfo.h | |
parent | 466490a55a22495d7fe7cb7f5572cfe36e7b33a3 (diff) |
properly indent my code
Diffstat (limited to 'src/CsgInfo.h')
-rw-r--r-- | src/CsgInfo.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/CsgInfo.h b/src/CsgInfo.h index fa3e100..889eefe 100644 --- a/src/CsgInfo.h +++ b/src/CsgInfo.h @@ -7,7 +7,7 @@ class CsgInfo { public: CsgInfo() { glview = NULL; } - OffscreenView *glview; + OffscreenView *glview; }; @@ -21,19 +21,19 @@ public: class CsgInfo_OpenCSG : public CsgInfo { public: - CsgInfo_OpenCSG() - { - root_chain = NULL; - highlights_chain = NULL; - background_chain = NULL; - glview = NULL; - } + CsgInfo_OpenCSG() + { + root_chain = NULL; + highlights_chain = NULL; + background_chain = NULL; + glview = NULL; + } shared_ptr<CSGTerm> root_norm_term; // Normalized CSG products - class CSGChain *root_chain; - std::vector<shared_ptr<CSGTerm> > highlight_terms; - CSGChain *highlights_chain; - std::vector<shared_ptr<CSGTerm> > background_terms; - CSGChain *background_chain; + class CSGChain *root_chain; + std::vector<shared_ptr<CSGTerm> > highlight_terms; + CSGChain *highlights_chain; + std::vector<shared_ptr<CSGTerm> > background_terms; + CSGChain *background_chain; }; #endif // ENABLE_OPENCSG |