diff options
author | James Cook <james@lindenlab.com> | 2007-01-02 08:33:20 +0000 |
---|---|---|
committer | James Cook <james@lindenlab.com> | 2007-01-02 08:33:20 +0000 |
commit | 420b91db29485df39fd6e724e782c449158811cb (patch) | |
tree | b471a94563af914d3ed3edd3e856d21cb1b69945 /indra/newview/llviewerlayer.h |
Print done when done.
Diffstat (limited to 'indra/newview/llviewerlayer.h')
-rw-r--r-- | indra/newview/llviewerlayer.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/indra/newview/llviewerlayer.h b/indra/newview/llviewerlayer.h new file mode 100644 index 0000000000..47f4780009 --- /dev/null +++ b/indra/newview/llviewerlayer.h @@ -0,0 +1,30 @@ +/** + * @file llviewerlayer.h + * @brief LLViewerLayer class header file + * + * Copyright (c) 2001-$CurrentYear$, Linden Research, Inc. + * $License$ + */ + +#ifndef LL_LLVIEWERLAYER_H +#define LL_LLVIEWERLAYER_H + +// Viewer-side representation of a layer... + +class LLViewerLayer +{ +public: + LLViewerLayer(const S32 width, const F32 scale = 1.f); + virtual ~LLViewerLayer(); + + F32 getValueScaled(const F32 x, const F32 y) const; +protected: + F32 getValue(const S32 x, const S32 y) const; +protected: + S32 mWidth; + F32 mScale; + F32 mScaleInv; + F32 *mDatap; +}; + +#endif // LL_LLVIEWERLAYER_H |