11#ifndef JAU_GAMP_GRAPH_UI_CONTAINER_HPP_
12#define JAU_GAMP_GRAPH_UI_CONTAINER_HPP_
Container interface of UI Shapes.
virtual void addShape(const ShapeRef &s) const noexcept=0
Adds a Shape.
virtual bool isCullingEnabled() const noexcept=0
Return whether Project-Modelview (PMv) frustum culling or Group's Modelview (Mv) frustum clipping is ...
virtual const ShapeList & shapes() const noexcept=0
Returns added Shapes.
virtual void setPMvCullingEnabled(bool v) noexcept=0
Enable or disable Project-Modelview (PMv) frustum culling per Shape for this container.
virtual void removeShapes(const ShapeList &shapes)=0
Removes all given shapes, w/o Shape#destroy(GL2ES2, RegionRenderer).
virtual const AABBox3f & bounds(const PMVMat4f &pmv, const Shape &shape) const noexcept=0
Returns AABBox dimension of given Shape from this container's perspective, i.e.
virtual ShapeRef removeShape(const ShapeRef &s) const noexcept=0
Removes given shape, w/o Shape#destroy(GL2ES2, RegionRenderer).
virtual size_t shapeCount() const noexcept=0
Returns number of Shapes, see getShapes().
virtual Shape & getShapeByID(int id) const noexcept=0
virtual void addShapes(const ShapeList &shapes)=0
Removes given shape with Shape#destroy(GL2ES2, RegionRenderer), if contained.
virtual Shape & getShapeByIdx(int id) const noexcept=0
virtual Shape & getShapeByName(const std::string &name) const noexcept=0
virtual ShapeList & renderedShapes() const noexcept=0
Returns added shapes which are rendered and sorted by z-axis in ascending order toward z-near.
virtual void removeAllShapes(RenderContext &rc, RegionRenderer &renderer)=0
Removes all contained shapes with Shape#destroy(GL2ES2, RegionRenderer).
virtual bool isOutside2(const Mat4f &mvCont, const Shape &shape, const PMVMat4f &) const noexcept=0
Returns whether the given Shape is completely outside of this container.
virtual bool isOutside(const PMVMat4f &, const Shape &shape) const noexcept=0
Returns whether the given Shape is completely outside of this container.
virtual bool isPMvCullingEnabled() const noexcept=0
Return whether Project-Modelview (PMv) frustum culling is enabled for this container.
virtual bool contains(const Shape &s)=0
Axis Aligned Bounding Box.
consteval_cxx20 std::string_view name() noexcept
std::vector< ShapeRef > ShapeList
std::shared_ptr< Shape > ShapeRef
PMVMatrix4< float > PMVMat4f