summaryrefslogtreecommitdiffstats
path: root/thirdparty/msdfgen/core/SignedDistance.hpp
blob: 62e73c03aa92b5a4a1deb19516cd2bc4b04fd85e (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

#pragma once

#include <cmath>
#include <cfloat>
#include "base.h"

namespace msdfgen {

/// Represents a signed distance and alignment, which together can be compared to uniquely determine the closest edge segment.
class SignedDistance {

public:
    double distance;
    double dot;

    inline SignedDistance() : distance(-DBL_MAX), dot(0) { }
    inline SignedDistance(double dist, double d) : distance(dist), dot(d) { }

};

inline bool operator<(const SignedDistance a, const SignedDistance b) {
    return fabs(a.distance) < fabs(b.distance) || (fabs(a.distance) == fabs(b.distance) && a.dot < b.dot);
}

inline bool operator>(const SignedDistance a, const SignedDistance b) {
    return fabs(a.distance) > fabs(b.distance) || (fabs(a.distance) == fabs(b.distance) && a.dot > b.dot);
}

inline bool operator<=(const SignedDistance a, const SignedDistance b) {
    return fabs(a.distance) < fabs(b.distance) || (fabs(a.distance) == fabs(b.distance) && a.dot <= b.dot);
}

inline bool operator>=(const SignedDistance a, const SignedDistance b) {
    return fabs(a.distance) > fabs(b.distance) || (fabs(a.distance) == fabs(b.distance) && a.dot >= b.dot);
}

}