Added getter methods for lower corner. (Trivial commit - part of Git testing)
This commit is contained in:
parent
24dcdcb97d
commit
cb992b7c34
@ -65,6 +65,10 @@ namespace PolyVox
|
|||||||
/// Inequality Operator.
|
/// Inequality Operator.
|
||||||
bool operator!=(const Region& rhs) const;
|
bool operator!=(const Region& rhs) const;
|
||||||
|
|
||||||
|
int32_t getLowerX(void) const;
|
||||||
|
int32_t getLowerY(void) const;
|
||||||
|
int32_t getLowerZ(void) const;
|
||||||
|
|
||||||
Vector3DInt32 getLowerCorner(void) const;
|
Vector3DInt32 getLowerCorner(void) const;
|
||||||
Vector3DInt32 getUpperCorner(void) const;
|
Vector3DInt32 getUpperCorner(void) const;
|
||||||
|
|
||||||
|
@ -92,6 +92,21 @@ namespace PolyVox
|
|||||||
return !(*this == rhs);
|
return !(*this == rhs);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int32_t Region::getLowerX(void) const
|
||||||
|
{
|
||||||
|
return m_iLowerX;
|
||||||
|
}
|
||||||
|
|
||||||
|
int32_t Region::getLowerY(void) const
|
||||||
|
{
|
||||||
|
return m_iLowerY;
|
||||||
|
}
|
||||||
|
|
||||||
|
int32_t Region::getLowerZ(void) const
|
||||||
|
{
|
||||||
|
return m_iLowerZ;
|
||||||
|
}
|
||||||
|
|
||||||
Vector3DInt32 Region::getLowerCorner(void) const
|
Vector3DInt32 Region::getLowerCorner(void) const
|
||||||
{
|
{
|
||||||
return Vector3DInt32(m_iLowerX, m_iLowerY, m_iLowerZ);
|
return Vector3DInt32(m_iLowerX, m_iLowerY, m_iLowerZ);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user