├── .gitattributes ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── glm ├── detail │ ├── func_matrix.inl │ ├── func_vector_bool.inl │ ├── func_vector_common.inl │ ├── func_vector_exponential.inl │ ├── func_vector_geometric.inl │ ├── func_vector_relational.inl │ ├── func_vector_trigonometric.inl │ ├── func_vector_vec3.inl │ ├── namespace_begin.inl │ ├── namespace_end.inl │ ├── namespace_template_matrix_begin.inl │ ├── namespace_template_matrix_end.inl │ ├── namespace_template_vector_begin.inl │ ├── namespace_template_vector_end.inl │ ├── qualifier.h │ ├── scalar_float32.inl │ ├── scalar_float64.inl │ ├── setup.h │ ├── type_mat2x2.h │ ├── type_mat2x3.h │ ├── type_mat2x4.h │ ├── type_mat3x2.h │ ├── type_mat3x3.h │ ├── type_mat3x4.h │ ├── type_mat4x2.h │ ├── type_mat4x3.h │ ├── type_mat4x4.h │ ├── type_matrix.h │ ├── type_matrix.inl │ ├── type_matrix_decl.inl │ ├── type_matrix_impl.h │ ├── type_scalar.h │ ├── type_vec1.h │ ├── type_vec2.h │ ├── type_vec3.h │ ├── type_vec4.h │ ├── type_vector.h │ ├── type_vector.inl │ ├── type_vector_decl.inl │ ├── type_vector_impl.h │ └── variadic_param.h ├── ext │ ├── matrix_double2x2.c │ ├── matrix_double2x2.h │ ├── matrix_double2x3.c │ ├── matrix_double2x3.h │ ├── matrix_double2x4.c │ ├── matrix_double2x4.h │ ├── matrix_double3x2.c │ ├── matrix_double3x2.h │ ├── matrix_double3x3.c │ ├── matrix_double3x3.h │ ├── matrix_double3x4.c │ ├── matrix_double3x4.h │ ├── matrix_double4x2.c │ ├── matrix_double4x2.h │ ├── matrix_double4x3.c │ ├── matrix_double4x3.h │ ├── matrix_double4x4.c │ ├── matrix_double4x4.h │ ├── matrix_float2x2.c │ ├── matrix_float2x2.h │ ├── matrix_float2x3.c │ ├── matrix_float2x3.h │ ├── matrix_float2x4.c │ ├── matrix_float2x4.h │ ├── matrix_float3x2.c │ ├── matrix_float3x2.h │ ├── matrix_float3x3.c │ ├── matrix_float3x3.h │ ├── matrix_float3x4.c │ ├── matrix_float3x4.h │ ├── matrix_float4x2.c │ ├── matrix_float4x2.h │ ├── matrix_float4x3.c │ ├── matrix_float4x3.h │ ├── matrix_float4x4.c │ ├── matrix_float4x4.h │ ├── vector_bool1.c │ ├── vector_bool1.h │ ├── vector_bool2.c │ ├── vector_bool2.h │ ├── vector_bool3.c │ ├── vector_bool3.h │ ├── vector_bool4.c │ ├── vector_bool4.h │ ├── vector_double1.c │ ├── vector_double1.h │ ├── vector_double2.c │ ├── vector_double2.h │ ├── vector_double3.c │ ├── vector_double3.h │ ├── vector_double4.c │ ├── vector_double4.h │ ├── vector_float1.c │ ├── vector_float1.h │ ├── vector_float2.c │ ├── vector_float2.h │ ├── vector_float3.c │ ├── vector_float3.h │ ├── vector_float4.c │ ├── vector_float4.h │ ├── vector_int1.c │ ├── vector_int1.h │ ├── vector_int2.c │ ├── vector_int2.h │ ├── vector_int3.c │ ├── vector_int3.h │ ├── vector_int4.c │ ├── vector_int4.h │ ├── vector_uint1.c │ ├── vector_uint1.h │ ├── vector_uint2.c │ ├── vector_uint2.h │ ├── vector_uint3.c │ ├── vector_uint3.h │ ├── vector_uint4.c │ └── vector_uint4.h ├── glm.h ├── gtx │ └── print.h ├── mat2x2.h ├── mat2x3.h ├── mat2x4.h ├── mat3x2.h ├── mat3x3.h ├── mat3x4.h ├── mat4x2.h ├── mat4x3.h ├── mat4x4.h ├── vec1.h ├── vec2.h ├── vec3.h └── vec4.h └── test ├── demo_bool.c ├── demo_constructors.c ├── demo_print.c ├── demo_teapot.c ├── demo_transforms.c ├── hadd_vec4_test.c ├── hadd_vec4_test.txt ├── hello_particles_gl1.c ├── main.c ├── matrix_transform_test.c └── tinyobj_loader_c.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/README.md -------------------------------------------------------------------------------- /glm/detail/func_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/detail/func_matrix.inl -------------------------------------------------------------------------------- /glm/detail/func_vector_bool.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/detail/func_vector_bool.inl -------------------------------------------------------------------------------- /glm/detail/func_vector_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/detail/func_vector_common.inl -------------------------------------------------------------------------------- /glm/detail/func_vector_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/detail/func_vector_exponential.inl -------------------------------------------------------------------------------- /glm/detail/func_vector_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/detail/func_vector_geometric.inl -------------------------------------------------------------------------------- /glm/detail/func_vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/detail/func_vector_relational.inl -------------------------------------------------------------------------------- /glm/detail/func_vector_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/detail/func_vector_trigonometric.inl -------------------------------------------------------------------------------- /glm/detail/func_vector_vec3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/detail/func_vector_vec3.inl -------------------------------------------------------------------------------- /glm/detail/namespace_begin.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/detail/namespace_begin.inl -------------------------------------------------------------------------------- /glm/detail/namespace_end.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/detail/namespace_end.inl -------------------------------------------------------------------------------- /glm/detail/namespace_template_matrix_begin.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/detail/namespace_template_matrix_begin.inl -------------------------------------------------------------------------------- /glm/detail/namespace_template_matrix_end.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/detail/namespace_template_matrix_end.inl -------------------------------------------------------------------------------- /glm/detail/namespace_template_vector_begin.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/detail/namespace_template_vector_begin.inl -------------------------------------------------------------------------------- /glm/detail/namespace_template_vector_end.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/detail/namespace_template_vector_end.inl -------------------------------------------------------------------------------- /glm/detail/qualifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/detail/qualifier.h -------------------------------------------------------------------------------- /glm/detail/scalar_float32.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/detail/scalar_float32.inl -------------------------------------------------------------------------------- /glm/detail/scalar_float64.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/detail/scalar_float64.inl -------------------------------------------------------------------------------- /glm/detail/setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/detail/setup.h -------------------------------------------------------------------------------- /glm/detail/type_mat2x2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/detail/type_mat2x2.h -------------------------------------------------------------------------------- /glm/detail/type_mat2x3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/detail/type_mat2x3.h -------------------------------------------------------------------------------- /glm/detail/type_mat2x4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/detail/type_mat2x4.h -------------------------------------------------------------------------------- /glm/detail/type_mat3x2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/detail/type_mat3x2.h -------------------------------------------------------------------------------- /glm/detail/type_mat3x3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/detail/type_mat3x3.h -------------------------------------------------------------------------------- /glm/detail/type_mat3x4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/detail/type_mat3x4.h -------------------------------------------------------------------------------- /glm/detail/type_mat4x2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/detail/type_mat4x2.h -------------------------------------------------------------------------------- /glm/detail/type_mat4x3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/detail/type_mat4x3.h -------------------------------------------------------------------------------- /glm/detail/type_mat4x4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/detail/type_mat4x4.h -------------------------------------------------------------------------------- /glm/detail/type_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/detail/type_matrix.h -------------------------------------------------------------------------------- /glm/detail/type_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/detail/type_matrix.inl -------------------------------------------------------------------------------- /glm/detail/type_matrix_decl.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/detail/type_matrix_decl.inl -------------------------------------------------------------------------------- /glm/detail/type_matrix_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/detail/type_matrix_impl.h -------------------------------------------------------------------------------- /glm/detail/type_scalar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/detail/type_scalar.h -------------------------------------------------------------------------------- /glm/detail/type_vec1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/detail/type_vec1.h -------------------------------------------------------------------------------- /glm/detail/type_vec2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/detail/type_vec2.h -------------------------------------------------------------------------------- /glm/detail/type_vec3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/detail/type_vec3.h -------------------------------------------------------------------------------- /glm/detail/type_vec4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/detail/type_vec4.h -------------------------------------------------------------------------------- /glm/detail/type_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/detail/type_vector.h -------------------------------------------------------------------------------- /glm/detail/type_vector.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/detail/type_vector.inl -------------------------------------------------------------------------------- /glm/detail/type_vector_decl.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/detail/type_vector_decl.inl -------------------------------------------------------------------------------- /glm/detail/type_vector_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/detail/type_vector_impl.h -------------------------------------------------------------------------------- /glm/detail/variadic_param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/detail/variadic_param.h -------------------------------------------------------------------------------- /glm/ext/matrix_double2x2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/matrix_double2x2.c -------------------------------------------------------------------------------- /glm/ext/matrix_double2x2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/matrix_double2x2.h -------------------------------------------------------------------------------- /glm/ext/matrix_double2x3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/matrix_double2x3.c -------------------------------------------------------------------------------- /glm/ext/matrix_double2x3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/matrix_double2x3.h -------------------------------------------------------------------------------- /glm/ext/matrix_double2x4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/matrix_double2x4.c -------------------------------------------------------------------------------- /glm/ext/matrix_double2x4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/matrix_double2x4.h -------------------------------------------------------------------------------- /glm/ext/matrix_double3x2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/matrix_double3x2.c -------------------------------------------------------------------------------- /glm/ext/matrix_double3x2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/matrix_double3x2.h -------------------------------------------------------------------------------- /glm/ext/matrix_double3x3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/matrix_double3x3.c -------------------------------------------------------------------------------- /glm/ext/matrix_double3x3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/matrix_double3x3.h -------------------------------------------------------------------------------- /glm/ext/matrix_double3x4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/matrix_double3x4.c -------------------------------------------------------------------------------- /glm/ext/matrix_double3x4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/matrix_double3x4.h -------------------------------------------------------------------------------- /glm/ext/matrix_double4x2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/matrix_double4x2.c -------------------------------------------------------------------------------- /glm/ext/matrix_double4x2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/matrix_double4x2.h -------------------------------------------------------------------------------- /glm/ext/matrix_double4x3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/matrix_double4x3.c -------------------------------------------------------------------------------- /glm/ext/matrix_double4x3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/matrix_double4x3.h -------------------------------------------------------------------------------- /glm/ext/matrix_double4x4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/matrix_double4x4.c -------------------------------------------------------------------------------- /glm/ext/matrix_double4x4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/matrix_double4x4.h -------------------------------------------------------------------------------- /glm/ext/matrix_float2x2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/matrix_float2x2.c -------------------------------------------------------------------------------- /glm/ext/matrix_float2x2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/matrix_float2x2.h -------------------------------------------------------------------------------- /glm/ext/matrix_float2x3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/matrix_float2x3.c -------------------------------------------------------------------------------- /glm/ext/matrix_float2x3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/matrix_float2x3.h -------------------------------------------------------------------------------- /glm/ext/matrix_float2x4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/matrix_float2x4.c -------------------------------------------------------------------------------- /glm/ext/matrix_float2x4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/matrix_float2x4.h -------------------------------------------------------------------------------- /glm/ext/matrix_float3x2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/matrix_float3x2.c -------------------------------------------------------------------------------- /glm/ext/matrix_float3x2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/matrix_float3x2.h -------------------------------------------------------------------------------- /glm/ext/matrix_float3x3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/matrix_float3x3.c -------------------------------------------------------------------------------- /glm/ext/matrix_float3x3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/matrix_float3x3.h -------------------------------------------------------------------------------- /glm/ext/matrix_float3x4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/matrix_float3x4.c -------------------------------------------------------------------------------- /glm/ext/matrix_float3x4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/matrix_float3x4.h -------------------------------------------------------------------------------- /glm/ext/matrix_float4x2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/matrix_float4x2.c -------------------------------------------------------------------------------- /glm/ext/matrix_float4x2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/matrix_float4x2.h -------------------------------------------------------------------------------- /glm/ext/matrix_float4x3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/matrix_float4x3.c -------------------------------------------------------------------------------- /glm/ext/matrix_float4x3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/matrix_float4x3.h -------------------------------------------------------------------------------- /glm/ext/matrix_float4x4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/matrix_float4x4.c -------------------------------------------------------------------------------- /glm/ext/matrix_float4x4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/matrix_float4x4.h -------------------------------------------------------------------------------- /glm/ext/vector_bool1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/vector_bool1.c -------------------------------------------------------------------------------- /glm/ext/vector_bool1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/vector_bool1.h -------------------------------------------------------------------------------- /glm/ext/vector_bool2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/vector_bool2.c -------------------------------------------------------------------------------- /glm/ext/vector_bool2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/vector_bool2.h -------------------------------------------------------------------------------- /glm/ext/vector_bool3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/vector_bool3.c -------------------------------------------------------------------------------- /glm/ext/vector_bool3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/vector_bool3.h -------------------------------------------------------------------------------- /glm/ext/vector_bool4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/vector_bool4.c -------------------------------------------------------------------------------- /glm/ext/vector_bool4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/vector_bool4.h -------------------------------------------------------------------------------- /glm/ext/vector_double1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/vector_double1.c -------------------------------------------------------------------------------- /glm/ext/vector_double1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/vector_double1.h -------------------------------------------------------------------------------- /glm/ext/vector_double2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/vector_double2.c -------------------------------------------------------------------------------- /glm/ext/vector_double2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/vector_double2.h -------------------------------------------------------------------------------- /glm/ext/vector_double3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/vector_double3.c -------------------------------------------------------------------------------- /glm/ext/vector_double3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/vector_double3.h -------------------------------------------------------------------------------- /glm/ext/vector_double4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/vector_double4.c -------------------------------------------------------------------------------- /glm/ext/vector_double4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/vector_double4.h -------------------------------------------------------------------------------- /glm/ext/vector_float1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/vector_float1.c -------------------------------------------------------------------------------- /glm/ext/vector_float1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/vector_float1.h -------------------------------------------------------------------------------- /glm/ext/vector_float2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/vector_float2.c -------------------------------------------------------------------------------- /glm/ext/vector_float2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/vector_float2.h -------------------------------------------------------------------------------- /glm/ext/vector_float3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/vector_float3.c -------------------------------------------------------------------------------- /glm/ext/vector_float3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/vector_float3.h -------------------------------------------------------------------------------- /glm/ext/vector_float4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/vector_float4.c -------------------------------------------------------------------------------- /glm/ext/vector_float4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/vector_float4.h -------------------------------------------------------------------------------- /glm/ext/vector_int1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/vector_int1.c -------------------------------------------------------------------------------- /glm/ext/vector_int1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/vector_int1.h -------------------------------------------------------------------------------- /glm/ext/vector_int2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/vector_int2.c -------------------------------------------------------------------------------- /glm/ext/vector_int2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/vector_int2.h -------------------------------------------------------------------------------- /glm/ext/vector_int3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/vector_int3.c -------------------------------------------------------------------------------- /glm/ext/vector_int3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/vector_int3.h -------------------------------------------------------------------------------- /glm/ext/vector_int4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/vector_int4.c -------------------------------------------------------------------------------- /glm/ext/vector_int4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/vector_int4.h -------------------------------------------------------------------------------- /glm/ext/vector_uint1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/vector_uint1.c -------------------------------------------------------------------------------- /glm/ext/vector_uint1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/vector_uint1.h -------------------------------------------------------------------------------- /glm/ext/vector_uint2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/vector_uint2.c -------------------------------------------------------------------------------- /glm/ext/vector_uint2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/vector_uint2.h -------------------------------------------------------------------------------- /glm/ext/vector_uint3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/vector_uint3.c -------------------------------------------------------------------------------- /glm/ext/vector_uint3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/vector_uint3.h -------------------------------------------------------------------------------- /glm/ext/vector_uint4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/vector_uint4.c -------------------------------------------------------------------------------- /glm/ext/vector_uint4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/ext/vector_uint4.h -------------------------------------------------------------------------------- /glm/glm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/glm.h -------------------------------------------------------------------------------- /glm/gtx/print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/gtx/print.h -------------------------------------------------------------------------------- /glm/mat2x2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/mat2x2.h -------------------------------------------------------------------------------- /glm/mat2x3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/mat2x3.h -------------------------------------------------------------------------------- /glm/mat2x4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/mat2x4.h -------------------------------------------------------------------------------- /glm/mat3x2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/mat3x2.h -------------------------------------------------------------------------------- /glm/mat3x3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/mat3x3.h -------------------------------------------------------------------------------- /glm/mat3x4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/mat3x4.h -------------------------------------------------------------------------------- /glm/mat4x2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/mat4x2.h -------------------------------------------------------------------------------- /glm/mat4x3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/mat4x3.h -------------------------------------------------------------------------------- /glm/mat4x4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/mat4x4.h -------------------------------------------------------------------------------- /glm/vec1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/vec1.h -------------------------------------------------------------------------------- /glm/vec2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/vec2.h -------------------------------------------------------------------------------- /glm/vec3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/vec3.h -------------------------------------------------------------------------------- /glm/vec4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/glm/vec4.h -------------------------------------------------------------------------------- /test/demo_bool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/test/demo_bool.c -------------------------------------------------------------------------------- /test/demo_constructors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/test/demo_constructors.c -------------------------------------------------------------------------------- /test/demo_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/test/demo_print.c -------------------------------------------------------------------------------- /test/demo_teapot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/test/demo_teapot.c -------------------------------------------------------------------------------- /test/demo_transforms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/test/demo_transforms.c -------------------------------------------------------------------------------- /test/hadd_vec4_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/test/hadd_vec4_test.c -------------------------------------------------------------------------------- /test/hadd_vec4_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/test/hadd_vec4_test.txt -------------------------------------------------------------------------------- /test/hello_particles_gl1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/test/hello_particles_gl1.c -------------------------------------------------------------------------------- /test/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/test/main.c -------------------------------------------------------------------------------- /test/matrix_transform_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/test/matrix_transform_test.c -------------------------------------------------------------------------------- /test/tinyobj_loader_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidm00/glm/HEAD/test/tinyobj_loader_c.h --------------------------------------------------------------------------------