MCPcopy Create free account
hub / github.com/MyGUI/mygui / isCorner

Function isCorner

MyGUIEngine/src/msdfgen/core/edge-coloring.cpp:23–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

21}
22
23static bool isCorner(const Vector2 &aDir, const Vector2 &bDir, double crossThreshold) {
24 return dotProduct(aDir, bDir) <= 0 || fabs(crossProduct(aDir, bDir)) > crossThreshold;
25}
26
27static double estimateEdgeLength(const EdgeSegment *edge) {
28 double len = 0;

Callers 3

edgeColoringSimpleFunction · 0.85
edgeColoringInkTrapFunction · 0.85
edgeColoringByDistanceFunction · 0.85

Calls 2

dotProductFunction · 0.85
crossProductFunction · 0.85

Tested by

no test coverage detected