summaryrefslogtreecommitdiff
path: root/thirdparty/openmesh/glmcompat.h
blob: dc5a96eadb8f8654bfdc6c233d75666adf67738a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#pragma once

#include <OpenMesh/Core/Mesh/Traits.hh>
#include <OpenMesh/Core/Utils/vector_cast.hh>
#include <glm/geometric.hpp>
#include <glm/vec3.hpp>

namespace glm {
	template<length_t L, typename T, qualifier Q>
	auto
	norm(const vec<L, T, Q> & v)
	{
		return length(v);
	}

	template<length_t L, typename T, qualifier Q, typename S>
	auto
	vectorize(vec<L, T, Q> & v, S scalar)
	{
		v = vec<L, T, Q> {static_cast<T>(scalar)};
	}
}

namespace OpenMesh {
	template<typename dst_t, typename src_t, glm::length_t n, glm::qualifier Q>
	struct vector_caster<glm::vec<n, dst_t, Q>, glm::vec<n, src_t, Q>> {
		using source_type = glm::vec<n, src_t, Q>;
		using return_type = glm::vec<n, dst_t, Q>;

		inline static return_type
		cast(const source_type & _src)
		{
			return return_type {_src};
		}
	};

	template<glm::length_t L, typename T, glm::qualifier Q> struct vector_traits<glm::vec<L, T, Q>> {
		using vector_type = glm::vec<L, T, Q>;
		using value_type = T;
		static constexpr glm::length_t size_ = L;
	};
}