mirror of
https://github.com/godotengine/godot.git
synced 2025-01-12 20:22:49 +08:00
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);
|
||
|
|
||
|
};
|
||
|
|
||
|
}
|