MCPcopy Index your code
hub / github.com/benfry/processing4 / parsePathMoveto

Method parsePathMoveto

core/src/processing/core/PShapeSVG.java:925–931  ·  view source on GitHub ↗
(float px, float py)

Source from the content-addressed store, hash-verified

923
924
925 private void parsePathMoveto(float px, float py) {
926 if (vertexCount > 0) {
927 parsePathCode(BREAK);
928 }
929 parsePathCode(VERTEX);
930 parsePathVertex(px, py);
931 }
932
933
934 private void parsePathLineto(float px, float py) {

Callers 1

parsePathMethod · 0.95

Calls 2

parsePathCodeMethod · 0.95
parsePathVertexMethod · 0.95

Tested by

no test coverage detected