コード例 #1
0
ファイル: Ray3.java プロジェクト: kibotu/net.gtamps
 /**
  * Dreht den Strahl um, so dass er in die entgegengesetzte Richtung zeigt
  *
  * @return Diese Instanz für method chaining
  */
 @NotNull
 public Ray3 invert() {
   direction.invert();
   invDirection.set(1.0f / direction.x, 1.0f / direction.y, 1.0f / direction.z);
   return this;
 }