2019-08-19 19:19:58 +08:00
|
|
|
|
#ifndef HGL_ALGORITHM_MATH_VECTOR_MATRIX_INCLUDE
|
|
|
|
|
#define HGL_ALGORITHM_MATH_VECTOR_MATRIX_INCLUDE
|
|
|
|
|
|
|
|
|
|
#include<hgl/math/Vector.h>
|
|
|
|
|
#include<hgl/TypeFunc.h>
|
|
|
|
|
//注:GLM/CML(OpenGLMode)是列矩阵,计算坐标matrix*pos
|
|
|
|
|
// 而MGL是行矩阵,需要反过来pos*matrix
|
|
|
|
|
|
2021-09-24 01:51:32 +08:00
|
|
|
|
#include<glm/gtc/matrix_transform.hpp>
|
|
|
|
|
|
2019-08-19 19:19:58 +08:00
|
|
|
|
namespace hgl
|
|
|
|
|
{
|
2023-10-31 16:11:38 +08:00
|
|
|
|
using Quat4f=glm::quat;
|
|
|
|
|
|
|
|
|
|
using Matrix2f=glm::mat2;
|
2021-09-24 01:51:32 +08:00
|
|
|
|
using Matrix3f=glm::mat3;
|
|
|
|
|
using Matrix4f=glm::mat4;
|
2021-09-27 10:41:50 +08:00
|
|
|
|
using Matrix3x4f=glm::mat3x4;
|
2019-08-19 19:19:58 +08:00
|
|
|
|
|
2023-10-31 16:11:38 +08:00
|
|
|
|
constexpr const Matrix2f Identity2f=Matrix2f(1.0f);
|
|
|
|
|
constexpr const Matrix3f Identity3f=Matrix3f(1.0f);
|
|
|
|
|
constexpr const Matrix4f Identity4f=Matrix4f(1.0f);
|
|
|
|
|
constexpr const Matrix3f Identity3x4f=Matrix3x4f(1.0f);
|
|
|
|
|
|
2019-08-19 19:19:58 +08:00
|
|
|
|
inline Matrix4f inverse(const Matrix4f &m)
|
|
|
|
|
{
|
2021-09-24 01:51:32 +08:00
|
|
|
|
return glm::inverse(m);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
inline Matrix4f transpose(const Matrix4f &m)
|
|
|
|
|
{
|
|
|
|
|
return glm::transpose(m);
|
2019-08-19 19:19:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-11-19 18:25:20 +08:00
|
|
|
|
/**
|
|
|
|
|
* 生成一个正角视图矩阵
|
|
|
|
|
* @param left 左
|
|
|
|
|
* @param right 右
|
|
|
|
|
* @param top 顶
|
|
|
|
|
* @param bottom 底
|
|
|
|
|
* @param znear 近平面z值
|
|
|
|
|
* @param zfar 远平台z值
|
|
|
|
|
*/
|
|
|
|
|
Matrix4f ortho( float left,
|
|
|
|
|
float right,
|
|
|
|
|
float bottom,
|
|
|
|
|
float top,
|
|
|
|
|
float znear,
|
|
|
|
|
float zfar );
|
2019-08-19 19:19:58 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 生成一个正角视图矩阵
|
|
|
|
|
* @param width 宽
|
|
|
|
|
* @param height 高
|
|
|
|
|
* @param znear 近平面z值
|
|
|
|
|
* @param zfar 远平台z值
|
|
|
|
|
*/
|
2020-11-19 18:25:20 +08:00
|
|
|
|
Matrix4f ortho(float width,float height,float znear,float zfar);
|
2019-08-19 19:19:58 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 生成一个正角视图矩阵
|
|
|
|
|
* @param width 宽
|
|
|
|
|
* @param height 高
|
|
|
|
|
*/
|
2020-11-19 18:25:20 +08:00
|
|
|
|
Matrix4f ortho(float width,float height);
|
2019-08-19 19:19:58 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 生成一个透视矩阵
|
|
|
|
|
* @param aspect_ratio 宽高比
|
|
|
|
|
* @param field_of_view 视野
|
|
|
|
|
* @param znear 近截面
|
|
|
|
|
* @param zfar 远截面
|
|
|
|
|
*/
|
2020-11-19 18:25:20 +08:00
|
|
|
|
Matrix4f perspective( float field_of_view,
|
|
|
|
|
float aspect_ratio,
|
|
|
|
|
float znear,
|
|
|
|
|
float zfar);
|
2019-08-19 19:19:58 +08:00
|
|
|
|
|
|
|
|
|
inline Matrix4f translate(const Vector3f &v)
|
|
|
|
|
{
|
2021-09-24 01:51:32 +08:00
|
|
|
|
return glm::translate(Matrix4f(1.0f),v);
|
2019-08-19 19:19:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
inline Matrix4f translate(float x,float y,float z)
|
|
|
|
|
{
|
2021-09-24 01:51:32 +08:00
|
|
|
|
return glm::translate(Matrix4f(1.0f),Vector3f(x,y,z));
|
2019-08-19 19:19:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-12-09 16:28:21 +08:00
|
|
|
|
inline Matrix4f translate(float x,float y)
|
|
|
|
|
{
|
2021-09-24 01:51:32 +08:00
|
|
|
|
return translate(x,y,1.0f);
|
2020-12-09 16:28:21 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-08-19 19:19:58 +08:00
|
|
|
|
inline Matrix4f scale(const Vector3f &v)
|
|
|
|
|
{
|
2021-09-24 01:51:32 +08:00
|
|
|
|
return glm::scale(Matrix4f(1.0f),v);
|
2019-08-19 19:19:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
inline Matrix4f scale(float x,float y,float z)
|
|
|
|
|
{
|
2021-09-24 01:51:32 +08:00
|
|
|
|
return glm::scale(Matrix4f(1.0f),Vector3f(x,y,z));
|
2019-08-19 19:19:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-12-09 16:28:21 +08:00
|
|
|
|
inline Matrix4f scale(float x,float y)
|
|
|
|
|
{
|
2021-09-24 01:51:32 +08:00
|
|
|
|
return scale(x,y,1.0f);
|
2020-12-09 16:28:21 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-08-19 19:19:58 +08:00
|
|
|
|
inline Matrix4f scale(float s)
|
|
|
|
|
{
|
2021-09-24 01:51:32 +08:00
|
|
|
|
return glm::scale(Matrix4f(1.0f),Vector3f(s,s,s));
|
2019-08-19 19:19:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
inline Matrix4f rotate(float angle,const Vector3f &axis)
|
|
|
|
|
{
|
2021-09-24 01:51:32 +08:00
|
|
|
|
return glm::rotate(Matrix4f(1.0f),angle,axis);
|
2019-08-19 19:19:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
inline Matrix4f rotate(float angle,float x,float y,float z)
|
|
|
|
|
{
|
2021-09-24 01:51:32 +08:00
|
|
|
|
return glm::rotate(Matrix4f(1.0f),angle,Vector3f(x,y,z));
|
2019-08-19 19:19:58 +08:00
|
|
|
|
}
|
2020-12-09 16:28:21 +08:00
|
|
|
|
|
|
|
|
|
inline Matrix4f rotate(float angle,float x,float y)
|
|
|
|
|
{
|
2021-09-24 01:51:32 +08:00
|
|
|
|
return rotate(angle,x,y,1.0f);
|
2020-12-09 16:28:21 +08:00
|
|
|
|
}
|
2019-08-19 19:19:58 +08:00
|
|
|
|
|
|
|
|
|
inline Matrix4f rotate(float angle,const Vector4f &axis)
|
|
|
|
|
{
|
|
|
|
|
return rotate(angle,Vector3f(axis.x,axis.y,axis.z));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
inline Vector3f rotate(const Vector3f &v3f,float angle,const Vector3f &axis)
|
|
|
|
|
{
|
2021-09-24 01:51:32 +08:00
|
|
|
|
Vector4f result = rotate(angle, axis)*Vector4f(v3f, 1.0f);
|
2019-08-19 19:19:58 +08:00
|
|
|
|
|
2021-09-24 01:51:32 +08:00
|
|
|
|
return Vector3f(result.x,result.y,result.z);
|
2019-08-19 19:19:58 +08:00
|
|
|
|
}
|
|
|
|
|
}//namespace hgl
|
|
|
|
|
#endif//HGL_ALGORITHM_MATH_VECTOR_MATRIX_INCLUDE
|