package com.duguang.baseanimation.ui.imitate.biaopan;
/**
* 圆心坐标
* @author Administrator
*
*/
public class Pointer {
private float x;
private float y;
public float getX() {
return x;
}
public void setX(float x) {
this.x = x;
}
public float getY() {
return y;
}
public void setY(float y) {
this.y = y;
}
@Override
public String toString() {
return "Pointer [x=" + x + ", y=" + y + "]";
}
public Pointer(float x, float y) {
super();
this.x = x;
this.y = y;
}
}