class mrpt::opengl::CSetOfTriangles

Overview

A set of colored triangles, able to draw any solid, arbitrarily complex object without textures.

For textures, see CSetOfTexturedTriangles

See also:

opengl::Scene, CSetOfTexturedTriangles

#include <mrpt/opengl/CSetOfTriangles.h>

class CSetOfTriangles: public mrpt::opengl::CRenderizableShaderTriangles
{
public:
    // typedefs

    typedef std::vector<TTriangle>::const_iterator const_iterator;
    typedef std::vector<TTriangle>::const_reverse_iterator const_reverse_iterator;

    // construction

    CSetOfTriangles();

    // methods

    virtual void onUpdateBuffers_Triangles();
    void updatePolygons() const;
    void clearTriangles();
    size_t getTrianglesCount() const;
    void getTriangle(size_t idx, TTriangle& t) const;
    void insertTriangle(const TTriangle& t);

    template <class InputIterator>
    void insertTriangles(
        const InputIterator& begin,
        const InputIterator& end
        );

    void insertTriangles(const CSetOfTriangles::Ptr& p);
    void reserve(size_t t);
    virtual CRenderizable& setColor_u8(const mrpt::img::TColor& c);
    virtual CRenderizable& setColorA_u8(const uint8_t a);
    virtual bool traceRay(const mrpt::poses::CPose3D& o, double& dist) const;
    void getPolygons(std::vector<mrpt::math::TPolygon3D>& polys) const;

    template <class CONTAINER>
    void insertTriangles(const CONTAINER& c);

    virtual mrpt::math::TBoundingBoxf internalBoundingBoxLocal() const;
};

Inherited Members

public:
    // structs

    struct OutdatedState;
    struct RenderContext;
    struct State;

    // methods

    virtual void render(const RenderContext& rc) const = 0;
    virtual void renderUpdateBuffers() const = 0;
    virtual shader_list_t requiredShaders() const;
    virtual void freeOpenGLResources() = 0;
    virtual void onUpdateBuffers_Triangles() = 0;

Methods

virtual void onUpdateBuffers_Triangles()

Must be implemented in derived classes to update the geometric entities to be drawn in “m_*_buffer” fields.

void updatePolygons() const

Explicitly updates the internal polygon cache, with all triangles as polygons.

See also:

getPolygons()

void clearTriangles()

Clear this object, removing all triangles.

size_t getTrianglesCount() const

Get triangle count.

void getTriangle(size_t idx, TTriangle& t) const

Gets the i-th triangle.

void insertTriangle(const TTriangle& t)

Inserts a triangle into the set.

template <class InputIterator>
void insertTriangles(
    const InputIterator& begin,
    const InputIterator& end
    )

Inserts a set of triangles, bounded by iterators, into this set.

See also:

insertTriangle

void insertTriangles(const CSetOfTriangles::Ptr& p)

Inserts an existing CSetOfTriangles into this one.

void reserve(size_t t)

Reserves memory for certain number of triangles, avoiding multiple memory allocation calls.

virtual CRenderizable& setColor_u8(const mrpt::img::TColor& c)

Overwrite all triangles colors with the one provided.

virtual CRenderizable& setColorA_u8(const uint8_t a)

Overwrite all triangles colors with the one provided.

virtual bool traceRay(const mrpt::poses::CPose3D& o, double& dist) const

Simulation of ray-trace, given a pose.

Returns true if the ray effectively collisions with the object (returning the distance to the origin of the ray in “dist”), or false in other case. “dist” variable yields undefined behaviour when false is returned

void getPolygons(std::vector<mrpt::math::TPolygon3D>& polys) const

Gets the polygon cache.

See also:

insertTriangles

template <class CONTAINER>
void insertTriangles(const CONTAINER& c)

Inserts a set of triangles, given in a container of either TTriangle ‘s or TPolygon3D.

See also:

insertTriangle

virtual mrpt::math::TBoundingBoxf internalBoundingBoxLocal() const

Evaluates the bounding box of this object (including possible children) in the coordinate frame of the object parent.