コード例 #1
0
ファイル: Vector2.java プロジェクト: ldo/neotextureedit
 public void setFromAngle(float a) {
   x = FMath.cos(a);
   y = FMath.sin(a);
 }