#include <drawable_object.h>
Public Member Functions | |
void | DeleteGlResources () |
DrawableObject () | |
DrawableObject (const DrawableObject &other)=delete | |
const DrawableObject & | operator= (const DrawableObject &)=delete |
virtual void | Render (const glm::mat4 &projection_mat, const glm::mat4 &view_mat) const =0 |
void | SetAlpha (const float alpha) |
void | SetColor (const Color &color) |
void | SetColor (const float red, const float green, const float blue) |
void | SetShader () |
void | SetVertices (const std::vector< GLfloat > &vertices) |
void | SetVertices (const std::vector< GLfloat > &vertices, const std::vector< GLushort > &indices) |
void | SetVertices (const std::vector< GLfloat > &vertices, const std::vector< GLfloat > &normals) |
Public Member Functions inherited from tango_gl::Transform | |
const Transform * | GetParent () const |
Transform * | GetParent () |
glm::vec3 | GetPosition () const |
glm::quat | GetRotation () const |
glm::vec3 | GetScale () const |
glm::mat4 | GetTransformationMatrix () const |
const Transform & | operator= (const Transform &rhs)=delete |
void | SetParent (Transform *transform) |
void | SetPosition (const glm::vec3 &position) |
void | SetRotation (const glm::quat &rotation) |
void | SetScale (const glm::vec3 &scale) |
void | SetTransformationMatrix (const glm::mat4 &transform_mat) |
Transform () | |
Transform (const Transform &other)=delete | |
void | Translate (const glm::vec3 &translation) |
virtual | ~Transform () |
Protected Attributes | |
float | alpha_ |
GLuint | attrib_normals_ |
GLuint | attrib_vertices_ |
float | blue_ |
float | green_ |
std::vector< GLushort > | indices_ |
std::vector< GLfloat > | normals_ |
float | red_ |
GLenum | render_mode_ |
GLuint | shader_program_ |
GLuint | uniform_color_ |
GLuint | uniform_mvp_mat_ |
std::vector< GLfloat > | vertices_ |
Definition at line 27 of file drawable_object.h.
|
inline |
Definition at line 29 of file drawable_object.h.
|
delete |
void tango_gl::DrawableObject::DeleteGlResources | ( | ) |
Definition at line 34 of file drawable_object.cpp.
|
delete |
|
pure virtual |
Implemented in tango_gl::Band, tango_gl::Mesh, tango_gl::Quad, tango_gl::Line, tango_gl::Axis, and tango_gl::VideoOverlay.
void tango_gl::DrawableObject::SetAlpha | ( | const float | alpha | ) |
Definition at line 49 of file drawable_object.cpp.
void tango_gl::DrawableObject::SetColor | ( | const Color & | color | ) |
Definition at line 45 of file drawable_object.cpp.
void tango_gl::DrawableObject::SetColor | ( | const float | red, |
const float | green, | ||
const float | blue | ||
) |
Definition at line 40 of file drawable_object.cpp.
void tango_gl::DrawableObject::SetShader | ( | ) |
Definition at line 22 of file drawable_object.cpp.
void tango_gl::DrawableObject::SetVertices | ( | const std::vector< GLfloat > & | vertices | ) |
Definition at line 51 of file drawable_object.cpp.
void tango_gl::DrawableObject::SetVertices | ( | const std::vector< GLfloat > & | vertices, |
const std::vector< GLushort > & | indices | ||
) |
Definition at line 55 of file drawable_object.cpp.
void tango_gl::DrawableObject::SetVertices | ( | const std::vector< GLfloat > & | vertices, |
const std::vector< GLfloat > & | normals | ||
) |
Definition at line 61 of file drawable_object.cpp.
|
protected |
Definition at line 50 of file drawable_object.h.
|
protected |
Definition at line 60 of file drawable_object.h.
|
protected |
Definition at line 59 of file drawable_object.h.
|
protected |
Definition at line 49 of file drawable_object.h.
|
protected |
Definition at line 48 of file drawable_object.h.
|
protected |
Definition at line 51 of file drawable_object.h.
|
protected |
Definition at line 53 of file drawable_object.h.
|
protected |
Definition at line 47 of file drawable_object.h.
|
protected |
Definition at line 55 of file drawable_object.h.
|
protected |
Definition at line 56 of file drawable_object.h.
|
protected |
Definition at line 57 of file drawable_object.h.
|
protected |
Definition at line 58 of file drawable_object.h.
|
protected |
Definition at line 52 of file drawable_object.h.