Merge branch 'feature/region-enhancements' into develop
This commit is contained in:
commit
d2cc4da68d
@ -69,6 +69,10 @@ namespace PolyVox
|
||||
int32_t getLowerY(void) const;
|
||||
int32_t getLowerZ(void) const;
|
||||
|
||||
int32_t getUpperX(void) const;
|
||||
int32_t getUpperY(void) const;
|
||||
int32_t getUpperZ(void) const;
|
||||
|
||||
Vector3DInt32 getLowerCorner(void) const;
|
||||
Vector3DInt32 getUpperCorner(void) const;
|
||||
|
||||
|
@ -107,6 +107,21 @@ namespace PolyVox
|
||||
return m_iLowerZ;
|
||||
}
|
||||
|
||||
int32_t Region::getUpperX(void) const
|
||||
{
|
||||
return m_iUpperX;
|
||||
}
|
||||
|
||||
int32_t Region::getUpperY(void) const
|
||||
{
|
||||
return m_iUpperY;
|
||||
}
|
||||
|
||||
int32_t Region::getUpperZ(void) const
|
||||
{
|
||||
return m_iUpperZ;
|
||||
}
|
||||
|
||||
Vector3DInt32 Region::getLowerCorner(void) const
|
||||
{
|
||||
return Vector3DInt32(m_iLowerX, m_iLowerY, m_iLowerZ);
|
||||
|
Loading…
x
Reference in New Issue
Block a user