/// Include <glm/gtx/matrix_decompose.hpp> to use the features of this extension.
///
/// Decomposes a model matrix to translations, rotation and scale components
#pragma once
// Dependencies
#include"../mat4x4.hpp"
#include"../vec3.hpp"
#include"../vec4.hpp"
#include"../geometric.hpp"
#include"../gtc/quaternion.hpp"
#include"../gtc/matrix_transform.hpp"
#ifndef GLM_ENABLE_EXPERIMENTAL
# error "GLM: GLM_GTX_matrix_decompose is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."