本文整理汇总了Java中com.badlogic.gdx.math.MathUtils.atan2方法的典型用法代码示例。如果您正苦于以下问题:Java MathUtils.atan2方法的具体用法?Java MathUtils.atan2怎么用?Java MathUtils.atan2使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.badlogic.gdx.math.MathUtils
的用法示例。
在下文中一共展示了MathUtils.atan2方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getDirectRad
import com.badlogic.gdx.math.MathUtils; //导入方法依赖的package包/类
/**����t1�����t0�ķ�λ������ֵ��
* @return �����t0����ϵ�Ļ��� */
public static final float getDirectRad(final Vector2 t1, final Vector2 t0){
final float dx = t1.x-t0.x;
final float dy = t1.y-t0.y;
return MathUtils.atan2(dy, dx);
}
示例2: angleToNext
import com.badlogic.gdx.math.MathUtils; //导入方法依赖的package包/类
private float angleToNext(int index) {
Tile current = path.get(index);
Tile next = path.get(index + 1);
float dX = current.getX(Align.center) - next.getX(Align.center);
float dY = current.getY(Align.center) - next.getY(Align.center);
return MathUtils.atan2(dY, dX) * MathUtils.radDeg;
}