TAMSVIZ
Visualization and annotation tool for ROS
mesh.h
1 // TAMSVIZ
2 // (c) 2020 Philipp Ruppel
3 
4 #pragma once
5 
6 #include "opengl.h"
7 #include "resource.h"
8 
9 #include <Eigen/Dense>
10 
11 struct MeshData {
12 private:
13  void _transform(const Eigen::Affine3f &transform);
14 
15 public:
16  std::vector<Eigen::Vector3f> positions;
17  std::vector<Eigen::Vector3f> normals;
18  std::vector<Eigen::Vector2f> texcoords;
19  std::vector<Eigen::Vector3f> tangents;
20  std::vector<Eigen::Vector3f> bitangents;
21  std::vector<Eigen::Vector4f> colors;
22  std::vector<uint32_t> colors8;
23  std::vector<Eigen::Vector4f> extras;
24  std::vector<uint32_t> indices;
25  MeshData &computeNormals();
26  template <class T> MeshData &transform(const T &transform) {
27  _transform(Eigen::Affine3f(transform));
28  return *this;
29  }
30  MeshData &append(const MeshData &other);
31  MeshData &translate(const Eigen::Vector3f &v);
32  MeshData &operator+=(const MeshData &other);
33  MeshData &translate(float x, float y, float z);
34  MeshData &scale(const Eigen::Vector3f &v);
35  MeshData &scale(float x, float y, float z);
36  MeshData &scale(float s);
37  MeshData &rotate(float angle, const Eigen::Vector3f &axis);
38  MeshData &colorize(const Eigen::Vector4f &color);
39  MeshData &colorize(float r, float g, float b, float a = 1.0f);
40 };
41 MeshData operator+(const MeshData &a, const MeshData &b);
42 template <class T>
43 inline MeshData operator*(const T &transform, const MeshData &mesh) {
44  MeshData ret = mesh;
45  ret.transform(transform);
46  return ret;
47 }
48 
49 class Mesh : public ResourceBase {
50  bool _destructed = false;
51  MeshData _data;
52  GLuint _vao = 0;
53  bool _transparent = false;
54  std::function<void(MeshData &)> _loader;
55  void createBuffer(GLenum type, GLuint index, const void *data, size_t size,
56  size_t stride, size_t element_size = 4,
57  GLenum datatype = GL_FLOAT, bool normalized = false);
58  void create();
59  void destroy();
60  void init();
61 
62 public:
63  Mesh(const MeshData &data);
64  Mesh(const std::function<void(MeshData &)> &loader);
65  Mesh(const std::function<MeshData()> &loader);
66  ~Mesh();
67  void bind();
68  bool transparent();
69  GLuint vertexArrayObject();
70  const MeshData &data() const { return _data; }
71 };
Definition: mesh.h:49
Definition: mesh.h:11