2122232425262728293031
ctx.strokewidth(1.0); Path p = new Path(); for (int i = -100; i < 100; i++) { double x = -snapX + (i * distance); double y = -snapY + (i * distance); p.line(x, -1000, x, 1000); p.line(-1000, y, 1000, y); } ctx.drawpath(p); }
2223242526272829303132
Path p = new Path(); for (int i = -100; i < 100; i++) { double x = -snapX + (i * distance); double y = -snapY + (i * distance); p.line(x, -1000, x, 1000); p.line(-1000, y, 1000, y); } ctx.drawpath(p); } }