戻る

クラス
lib.math.Matrix4 の使用

Matrix4 を使用するパッケージ
lib.math ベクトルや行列など、主に 3D の計算を行うクラスで構成されています。 
 

lib.math での Matrix4 の使用
 

lib.math での Matrix4 のサブクラス
 class RotationMatrix
          回転を表す同次変換行列を表すクラスです。
 class TransformMatrix
          同次変換行列を表すクラスです。
 class TranslationMatrix
          平行移動を表す同次変換行列を表すクラスです。
 

Matrix4 を返す lib.math のメソッド
 Matrix4 Matrix4.multiply(Matrix4 multiplier)
           
 Matrix4 Matrix4.operator_star(Matrix4 multiplier)
           
 Matrix4 Matrix4.inverse()
           
 

Matrix4 のパラメータを持つ lib.math のメソッド
 void Matrix4.set(Matrix4 matrix)
           
 void Matrix4.setInverse(Matrix4 value)
           
 void Matrix4.setMultiplication(Matrix4 multiplicand, Matrix4 multiplier)
           
 Matrix4 Matrix4.multiply(Matrix4 multiplier)
           
 Matrix4 Matrix4.operator_star(Matrix4 multiplier)
           
 void RotationMatrix.set(Matrix4 matrix)
           
 void TranslationMatrix.set(Matrix4 matrix)
           
 void Quaternion.setRotation(Matrix4 matrix)
           
 

Matrix4 のパラメータを持つ lib.math のコンストラクタ
Matrix4.Matrix4(Matrix4 matrix)
           
 


戻る