Skip to content
Snippets Groups Projects
Select Git revision
  • cecda58fb0b4368fed13f38b0697b8029e6b7d3b
  • master default protected
  • more_logging
  • MDL-58395
  • accountexpires
  • hsh_3.10
  • v3.10-r1
  • v3.9-r2
  • v3.9-r1
  • v3.8-r1
  • v3.7-r1
  • v3.6-r1
  • v3.5-r2
  • v3.5-r1
  • v3.4-r4
  • v3.4-r3
  • v3.4-r2
  • v3.4-r1
  • v3.3-r1
  • v3.2-r4
  • v3.2-r3
  • v3.2-r2
  • v3.2-r1
  • v3.1-r1
  • v3.0-r3
  • v3.0-r2
26 results

COPYING.txt

Blame
  • This project is licensed under the GNU General Public License v3.0 only. Learn more
    CgEigenDecomposition3x3.h 453 B
    #ifndef CGEIGENDECOMPOSITION3X3_H
    #define CGEIGENDECOMPOSITION3X3_H
    
    #include "glm/glm.hpp"
    #include "CgMath/Eigen/Dense"
    #include "CgMath/Eigen/Eigenvalues"
    #include "glm/glm.hpp"
    #include <iostream>
    
    class CgEigenDecomposition3x3 {
    public:
      CgEigenDecomposition3x3(glm::mat3 arg);
      glm::mat3 getEigenvectors();
      glm::vec3 getEigenvalues();
    private:
        glm::mat3 m_eigenvectors;
        glm::vec3 m_eigenvalues;
    };
    
    #endif // CGEIGENDECOMPOSITION3X3_H