drawDot(cornerPath, cx, cy);
ctx.draw(cornerPath);
Path strokePath = new Path();
strokePath.setFillColor(null);
strokePath.setStrokeColor(HANDLE_COLOR);
strokePath.rect(cx, cy, width, height);
ctx.draw(strokePath);
}
@Override
public boolean mousePressed(Point pt) {