4c3f7d1290
Adds multi-channel SDF font texture generation and rendering support. Adds per-font oversampling support. Adds FontData import plugins (for dynamic fonts, BMFonts and monospaced image fonts), font texture cache pre-generation and loading. Adds BMFont binary format and outline support.
25 lines
603 B
C++
25 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);
|
|
|
|
};
|
|
|
|
}
|