MCPcopy Create free account
hub / github.com/Tom94/tev / arcTo

Method arcTo

include/tev/VectorGraphics.h:125–125  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

123 static VgCommand lineTo(Pos p) { return {EType::LineTo, {{p.x, p.y}}}; }
124
125 static VgCommand arcTo(Pos p1, Pos p2, float radius) { return {EType::ArcTo, {{p1.x, p1.y, p2.x, p2.y, radius}}}; }
126
127 static VgCommand arc(Pos center, float radius, float angle_begin, float angle_end, EWinding winding) {
128 return {EType::Arc, {{center.x, center.y, radius, angle_begin, angle_end, (float)(int)winding}}};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected