diff options
author | katharine@exodusviewer.com <katharine@exodusviewer.com> | 2013-09-04 16:37:33 -0400 |
---|---|---|
committer | katharine@exodusviewer.com <katharine@exodusviewer.com> | 2013-09-04 16:37:33 -0400 |
commit | 2108e9de5bb93d60a040ff385f50552ceed9b076 (patch) | |
tree | bc960e8c8f529871b12f390a3690bfabfc4fe41d /indra | |
parent | 96f0d930bc29b805d195c3b0155c9f0d2ce70b02 (diff) |
OPEN-149: fix documentation of LLColor4 constructor for F32 vector
Diffstat (limited to 'indra')
-rwxr-xr-x | indra/llmath/v4color.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llmath/v4color.h b/indra/llmath/v4color.h index b047f86e6e..8c8c315808 100755 --- a/indra/llmath/v4color.h +++ b/indra/llmath/v4color.h @@ -50,7 +50,7 @@ class LLColor4 LLColor4(F32 r, F32 g, F32 b); // Initializes LLColor4 to (r, g, b, 1) LLColor4(F32 r, F32 g, F32 b, F32 a); // Initializes LLColor4 to (r. g, b, a) LLColor4(U32 clr); // Initializes LLColor4 to (r=clr>>24, etc)) - LLColor4(const F32 *vec); // Initializes LLColor4 to (vec[0]. vec[1], vec[2], 1) + LLColor4(const F32 *vec); // Initializes LLColor4 to (vec[0]. vec[1], vec[2], vec[3]) LLColor4(const LLColor3 &vec, F32 a = 1.f); // Initializes LLColor4 to (vec, a) explicit LLColor4(const LLSD& sd); explicit LLColor4(const LLColor4U& color4u); // "explicit" to avoid automatic conversion |