Android examples for Graphics:Path Point
translate Point
import android.graphics.PointF; public class Main{ public static PointValue translate(PointF p, float x, float y) { return new PointValue(p.x + x, p.y + y); }/*w ww. j a v a2s . c o m*/ }