source: GTP/trunk/Lib/Illum/IBRBillboardCloudTrees/OGRE/src/LBBCLeafDistribution.cpp @ 721

Revision 721, 691 bytes checked in by igarcia, 18 years ago (diff)
Line 
1
2#include "LBBCLeafDistribution.h"
3
4namespace LBBC {
5
6LeafDistribution::LeafDistribution() {
7}
8
9LeafDistribution::~LeafDistribution()
10{
11
12}
13
14void LeafDistribution::setMinD(float value)
15{
16        mMinD = value;
17}
18
19void LeafDistribution::setMaxD(float value)
20{
21        mMaxD = value;
22}
23
24float LeafDistribution::getMinD()
25{
26        return mMinD;
27}
28
29float LeafDistribution::getMaxD()
30{
31        return mMaxD;
32}
33
34void LeafDistribution::setMinNormal(Ogre::Vector3 value)
35{
36        mMinNormal = value;
37}
38
39Ogre::Vector3 LeafDistribution::getMinNormal()
40{
41        return mMinNormal;
42}
43
44void LeafDistribution::setMaxNormal(Ogre::Vector3 value)
45{
46        mMaxNormal = value;
47}
48
49Ogre::Vector3 LeafDistribution::getMaxNormal()
50{
51        return mMaxNormal;
52}
53
54}
Note: See TracBrowser for help on using the repository browser.