Welcome to mirror list, hosted at ThFree Co, Russian Federation.

compare-key.hpp « src « quadriflow « extern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: df9109d62e03a50d424dcfb76e6def62f38c1d1a (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
#ifndef COMPARE_KEY_H_
#define COMPARE_KEY_H_

#include <iostream>
#include <map>

namespace qflow {

struct Key2i
{
	Key2i(int x, int y)
		: key(std::make_pair(x, y))
	{}
	bool operator==(const Key2i& other) const
	{
		return key == other.key;
	}
	bool operator<(const Key2i& other) const
	{
		return key < other.key;
	}
	std::pair<int, int> key;
};

struct Key3i
{
	Key3i(int x, int y, int z)
		: key(std::make_pair(x, std::make_pair(y, z)))
	{}
	bool operator==(const Key3i& other) const
	{
		return key == other.key;
	}
	bool operator<(const Key3i& other) const
	{
		return key < other.key;
	}
	std::pair<int, std::pair<int, int> > key;
};

struct Key3f
{
	Key3f(double x, double y, double z, double threshold)
		: key(std::make_pair(x / threshold, std::make_pair(y / threshold, z / threshold)))
	{}
	bool operator==(const Key3f& other) const
	{
		return key == other.key;
	}
	bool operator<(const Key3f& other) const
	{
		return key < other.key;
	}
	std::pair<int, std::pair<int, int> > key;
};

struct KeySorted2i
{
	KeySorted2i(int x, int y)
		: key(std::make_pair(x, y))
	{
		if (x > y)
			std::swap(key.first, key.second);
	}
	bool operator==(const KeySorted2i& other) const
	{
		return key == other.key;
	}
	bool operator<(const KeySorted2i& other) const
	{
		return key < other.key;
	}
	std::pair<int, int> key;
};

struct KeySorted3i
{
	KeySorted3i(int x, int y, int z)
		: key(std::make_pair(x, std::make_pair(y, z)))
	{
		if (key.first > key.second.first)
			std::swap(key.first, key.second.first);
		if (key.first > key.second.second)
			std::swap(key.first, key.second.second);
		if (key.second.first > key.second.second)
			std::swap(key.second.first, key.second.second);
	}
	bool operator==(const Key3i& other) const
	{
		return key == other.key;
	}
	bool operator<(const Key3i& other) const
	{
		return key < other.key;
	}
	std::pair<int, std::pair<int, int> > key;
};


} // namespace qflow

#endif