Skip to content
Snippets Groups Projects
Select Git revision
  • d5549a94dd7fc2b65a22292562975d5dc0944714
  • master default protected
  • hsh_v3.11
  • hsh_v3.10-r6
  • hsh_v3.10-r3
  • v3.9-r9
  • v3.10-r6
  • v3.9-r8
  • v3.10-r5
  • v3.9-r7
  • v3.10-r4
  • v3.9-r6
  • v3.10-r3
  • v3.9-r5
  • v3.10-r2
  • v3.9-r4
  • v3.10-r1
  • v3.9-r3
  • v3.9-r2
  • v3.9-r1
  • v3.8-r5
  • v3.8-r4
  • v3.8-r3
  • v3.8-r2
  • v3.8-r1
25 results

lib.php

Blame
  • 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