diff options
author | Richard Linden <none@none> | 2012-04-17 14:13:31 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2012-04-17 14:13:31 -0700 |
commit | 37186d452fcb94b13e34d01aa801e7db17ee353e (patch) | |
tree | dbc1dce0698a6b87f41325737e6af717e00b5b9d /indra/llui/lluiimage.h | |
parent | aa4a9059037d3e75d2c93d7889b460978d41fde1 (diff) |
CHUI-86 WIP Investigate voice-dot with name tag integration
added draw3D to LLUIImage to encapsulate display of image in projective 3D space
Diffstat (limited to 'indra/llui/lluiimage.h')
-rw-r--r-- | indra/llui/lluiimage.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/llui/lluiimage.h b/indra/llui/lluiimage.h index b86ea67505..7817ba1c7b 100644 --- a/indra/llui/lluiimage.h +++ b/indra/llui/lluiimage.h @@ -64,7 +64,9 @@ public: void drawBorder(S32 x, S32 y, S32 width, S32 height, const LLColor4& color, S32 border_width) const; void drawBorder(const LLRect& rect, const LLColor4& color, S32 border_width) const { drawBorder(rect.mLeft, rect.mBottom, rect.getWidth(), rect.getHeight(), color, border_width); } void drawBorder(S32 x, S32 y, const LLColor4& color, S32 border_width) const { drawBorder(x, y, getWidth(), getHeight(), color, border_width); } - + + void draw3D(const LLVector3& origin_agent, const LLVector3& x_axis, const LLVector3& y_axis, const LLRect& rect, const LLColor4& color); + const std::string& getName() const { return mName; } virtual S32 getWidth() const; |