MCPcopy Index your code
hub / github.com/processing/processing / parsePathMoveto

Method parsePathMoveto

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

Source from the content-addressed store, hash-verified

916
917
918 private void parsePathMoveto(float px, float py) {
919 if (vertexCount > 0) {
920 parsePathCode(BREAK);
921 }
922 parsePathCode(VERTEX);
923 parsePathVertex(px, py);
924 }
925
926
927 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