aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llmath/llvolume.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--linden/indra/llmath/llvolume.h22
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:
635class LLProfile 635class LLProfile
636{ 636{
637public: 637public:
638 LLProfile(const LLProfileParams &params) : mParams(params) 638 LLProfile(const LLProfileParams &params)
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
712public: 714public:
713 LLPath(const LLPathParams &params) : mParams(params) 715 LLPath(const LLPathParams &params)
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();