use of spacegraph.space2d.widget.meta.SketchedPath in project narchy by automenta.
the class Wiring method drag.
@Override
protected boolean drag(Finger f) {
if (path == null) {
path = new Path2D(64);
((Ortho) (start.root())).addOverlay(pathVis = new SketchedPath(path));
}
path.add(f.pos, 64);
updateEnd(f);
return true;
}
Aggregations