Ignore:
Timestamp:
04/06/06 20:48:19 (18 years ago)
Author:
igarcia
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Illum/IBRBillboardCloudTrees/OGRE/src/IMGBox2d.cpp

    r721 r731  
    1818} 
    1919 
    20 Ogre::Vector2 Box2d::GetMinimum()  
     20Ogre::Vector2 Box2d::getMinimum()  
    2121{  
    2222    return mMinimum; 
    2323} 
    2424 
    25 Ogre::Vector2 Box2d::GetMaximum()  
     25Ogre::Vector2 Box2d::getMaximum()  
    2626{  
    2727    return mMaximum;  
    2828} 
    2929 
    30 void Box2d::SetBoundBox(float x, float y, float X, float Y)  
     30void Box2d::setBoundBox(float x, float y, float X, float Y)  
    3131{ 
    3232    mMinimum.x = x; 
     
    3636} 
    3737 
    38 void Box2d::AddBoundingVector3(float x, float y) 
     38void Box2d::addBoundingVector3(float x, float y) 
    3939{ 
    4040    if (x < mMinimum.x) 
     
    5959} 
    6060 
    61 void Box2d::Print() 
     61void Box2d::print() 
    6262{ 
    6363        Ogre::LogManager::getSingleton().logMessage("Valor de la Caixa: (" + Ogre::StringConverter::toString(Ogre::Vector3(mMinimum.x, mMinimum.y, 0)) + ") - (" + Ogre::StringConverter::toString(Ogre::Vector3(mMaximum.x, mMaximum.y, 0)) + ")"); 
    6464} 
    6565 
    66 Ogre::Vector2 Box2d::GetCorner(int corner) const  
     66Ogre::Vector2 Box2d::getCorner(int corner) const  
    6767{ 
    6868        Ogre::Vector2 vector; 
     
    7979} 
    8080 
    81 bool Box2d::In(int w, int h)  
     81bool Box2d::in(int w, int h)  
    8282{ 
    8383    if (w <= (mMaximum.x - mMinimum.x) && h <= (mMaximum.y - mMinimum.y)) 
     
    8989} 
    9090 
    91 bool Box2d::FitPerfect(int w, int h) 
     91bool Box2d::fitPerfect(int w, int h) 
    9292{        
    9393    if (w == (mMaximum.x - mMinimum.x) && h == (mMaximum.y - mMinimum.y)) 
Note: See TracChangeset for help on using the changeset viewer.