java mouse location -
is there way of getting x co-ordinate or y co-ordinate form
mouseinfo.getpointerinfo().getlocation()
??? pretty easy:
point point = mouseinfo.getpointerinfo().getlocation(); double x = point.getx(); double y = point.gety();
Comments
Post a Comment