我看有几个人问视频中的开发环境是什么 , 在这我给大家说一下, 不用老问了, 这是IDE 是谷歌提供的安卓开发工具叫 Android Studio,现在有正是版本了 想用的同学去网上下载吧,
2015-01-31
// 获取角度
public float getDegrees(Point pointA, Point pointB) {
return (float) Math.toDegrees(Math.atan2(pointB.y - pointA.y, pointB.x - pointA.x));
}
public float getDegrees(Point pointA, Point pointB) {
return (float) Math.toDegrees(Math.atan2(pointB.y - pointA.y, pointB.x - pointA.x));
}
2015-01-31
getDegrees(Point a, Point b),switchDegrees(Math.abs(by-ay),Math.abs(bx-ax)) 这两个方法没讲啊
2015-01-29