java脚本机器人源代码 java脚本机器人源代码怎么写( 三 )


private int y;
private int angle;
private float dis;
public Point(int x, int y, int angle) {
this.x = x;
this.y = y;
this.angle = angle;
this.dis = (float) 0;
}
public void setLocation(Point point, String distance) {
if (point.angle == 0) {
point.x += Integer.valueOf(distance);
} else if (point.angle == 90) {
point.y += Integer.valueOf(distance);
} else if (point.angle == 180) {
point.x -= Integer.valueOf(distance);
} else {
point.y -= Integer.valueOf(distance);
}
}
public float getDis() {
return (float) Math.sqrt(this.x * this.x + this.y * this.y);
}
}
}
java脚本机器人源代码的介绍就聊到这里吧,感谢你花时间阅读本站内容,更多关于java脚本机器人源代码怎么写、java脚本机器人源代码的信息别忘了在本站进行查找喔 。

推荐阅读