diff options
Diffstat (limited to '')
-rw-r--r-- | linden/indra/llmath/llvolume.h | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/linden/indra/llmath/llvolume.h b/linden/indra/llmath/llvolume.h index a3e89ab..6ac07f5 100644 --- a/linden/indra/llmath/llvolume.h +++ b/linden/indra/llmath/llvolume.h | |||
@@ -635,12 +635,14 @@ protected: | |||
635 | class LLProfile | 635 | class LLProfile |
636 | { | 636 | { |
637 | public: | 637 | public: |
638 | LLProfile(const LLProfileParams ¶ms) : mParams(params) | 638 | LLProfile(const LLProfileParams ¶ms) |
639 | : mParams(params), | ||
640 | mOpen(FALSE), | ||
641 | mConcave(FALSE), | ||
642 | mDirty(TRUE), | ||
643 | mTotalOut(0), | ||
644 | mTotal(2) | ||
639 | { | 645 | { |
640 | mTotal = 2; | ||
641 | mTotalOut = 0; | ||
642 | mDirty = TRUE; | ||
643 | mConcave = FALSE; | ||
644 | } | 646 | } |
645 | 647 | ||
646 | ~LLProfile(); | 648 | ~LLProfile(); |
@@ -710,11 +712,13 @@ public: | |||
710 | }; | 712 | }; |
711 | 713 | ||
712 | public: | 714 | public: |
713 | LLPath(const LLPathParams ¶ms) : mParams(params) | 715 | LLPath(const LLPathParams ¶ms) |
716 | : mParams(params), | ||
717 | mOpen(FALSE), | ||
718 | mTotal(0), | ||
719 | mDirty(TRUE), | ||
720 | mStep(1) | ||
714 | { | 721 | { |
715 | mOpen = FALSE; | ||
716 | mDirty = TRUE; | ||
717 | mStep = 1; | ||
718 | } | 722 | } |
719 | 723 | ||
720 | virtual ~LLPath(); | 724 | virtual ~LLPath(); |