From 64561175abfd97c0f05a95ca201b6c5aeb4ad412 Mon Sep 17 00:00:00 2001 From: Mattes D Date: Sat, 22 Jul 2017 19:56:56 +0200 Subject: BlockArea: Added the GetBounds function. --- src/BlockArea.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'src/BlockArea.cpp') diff --git a/src/BlockArea.cpp b/src/BlockArea.cpp index eb3e82108..ea1bbe533 100644 --- a/src/BlockArea.cpp +++ b/src/BlockArea.cpp @@ -1952,6 +1952,18 @@ void cBlockArea::GetRelBlockTypeMeta(int a_RelX, int a_RelY, int a_RelZ, BLOCKTY +cCuboid cBlockArea::GetBounds(void) const +{ + return cCuboid( + m_Origin.x, m_Origin.y, m_Origin.z, + m_Origin.x + m_Size.x - 1, m_Origin.y + m_Size.y - 1, m_Origin.z + m_Size.z - 1 + ); +} + + + + + size_t cBlockArea::CountNonAirBlocks(void) const { // Check if blocktypes are valid: -- cgit v1.2.3