metaforce/Runtime/Graphics/CDrawablePlaneObject.hpp

25 lines
761 B
C++
Raw Normal View History

2018-10-06 20:42:33 -07:00
#pragma once
2016-06-28 11:54:55 -07:00
#include "Runtime/Graphics/CDrawable.hpp"
#include <zeus/CPlane.hpp>
2016-06-28 11:54:55 -07:00
2018-12-07 21:30:43 -08:00
namespace urde {
class CDrawablePlaneObject : public CDrawable {
friend class Buckets;
u16 x24_targetBucket;
float x28_farDist;
zeus::CPlane x2c_plane;
bool x3c_24_invertTest : 1;
bool x3c_25_zOnly : 1;
2016-07-25 15:52:02 -07:00
public:
2018-12-07 21:30:43 -08:00
CDrawablePlaneObject(EDrawableType dtype, float closeDist, float farDist, const zeus::CAABox& aabb, bool invertTest,
const zeus::CPlane& plane, bool zOnly, void* data)
2018-12-07 21:30:43 -08:00
: CDrawable(dtype, 0, closeDist, aabb, data), x24_targetBucket(0), x28_farDist(farDist), x2c_plane(plane) {
x3c_24_invertTest = invertTest;
x3c_25_zOnly = zOnly;
}
const zeus::CPlane& GetPlane() const { return x2c_plane; }
2016-06-28 11:54:55 -07:00
};
2018-12-07 21:30:43 -08:00
} // namespace urde