Separated getChangedRegionGeometry() from _findVisibleObjects().

This commit is contained in:
David Williams
2008-01-19 22:14:51 +00:00
parent b41793b520
commit e368926b5f
5 changed files with 217 additions and 155 deletions

View File

@ -41,6 +41,13 @@ namespace Ogre
{
}
void setData(Type xToSet, Type yToSet, Type zToSet)
{
x = xToSet;
y = yToSet;
z = zToSet;
}
bool operator==(const IntegralVector3<Type>& rhs) const throw()
{
return ((x == rhs.x) && (y == rhs.y) && (z == rhs.z));