convergent-curve-ordering.h 381 B

1234567891011
  1. #pragma once
  2. #include "edge-segments.h"
  3. namespace msdfgen {
  4. /// For curves a, b converging at P = a->point(1) = b->point(0) with the same (opposite) direction, determines the relative ordering in which they exit P (i.e. whether a is to the left or right of b at the smallest positive radius around P)
  5. int convergentCurveOrdering(const EdgeSegment *a, const EdgeSegment *b);
  6. }