diff options
author | Jacek Antonelli | 2008-08-15 23:44:58 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:44:58 -0500 |
commit | 089fc07d207c71ce1401e72f09c31ad8c45872e2 (patch) | |
tree | 0028955add042c6f45b47a7b774adeeac9c592cb /linden/indra/llmath/llvolume.h | |
parent | Second Life viewer sources 1.16.0.5 (diff) | |
download | meta-impy-089fc07d207c71ce1401e72f09c31ad8c45872e2.zip meta-impy-089fc07d207c71ce1401e72f09c31ad8c45872e2.tar.gz meta-impy-089fc07d207c71ce1401e72f09c31ad8c45872e2.tar.bz2 meta-impy-089fc07d207c71ce1401e72f09c31ad8c45872e2.tar.xz |
Second Life viewer sources 1.17.0.12
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(); |