26 lines
603 B
C++
26 lines
603 B
C++
|
|
||
|
#pragma once
|
||
|
|
||
|
namespace msdfgen {
|
||
|
|
||
|
/// Represents a signed distance and alignment, which together can be compared to uniquely determine the closest edge segment.
|
||
|
class SignedDistance {
|
||
|
|
||
|
public:
|
||
|
static const SignedDistance INFINITE;
|
||
|
|
||
|
double distance;
|
||
|
double dot;
|
||
|
|
||
|
SignedDistance();
|
||
|
SignedDistance(double dist, double d);
|
||
|
|
||
|
friend bool operator<(SignedDistance a, SignedDistance b);
|
||
|
friend bool operator>(SignedDistance a, SignedDistance b);
|
||
|
friend bool operator<=(SignedDistance a, SignedDistance b);
|
||
|
friend bool operator>=(SignedDistance a, SignedDistance b);
|
||
|
|
||
|
};
|
||
|
|
||
|
}
|