com.nttdocomo.ui.ogl.math
クラス Point3f

Object
  拡張com.nttdocomo.ui.ogl.math.Tuple3f
      拡張com.nttdocomo.ui.ogl.math.Point3f

public final class Point3f
extends Tuple3f
 [iアプリオプションAPI]

3次元の点を表すクラスです。

導入されたバージョン:
DoJa-5.0(903i)

フィールドの概要
 
クラス com.nttdocomo.ui.ogl.math.Tuple3f から継承したフィールド
x, y, z
 
コンストラクタの概要
Point3f()
           コンストラクタです。
Point3f(float x, float y, float z)
           コンストラクタです。
 
クラス Object から継承したメソッド
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

コンストラクタの詳細

Point3f

public Point3f()

コンストラクタです。

各成分は全て0で初期化されます。


Point3f

public Point3f(float x,
               float y,
               float z)

コンストラクタです。

各成分は引数x,y,zで指定された値で初期化されます。

パラメータ:
x - x成分の初期値を指定します。
y - y成分の初期値を指定します。
z - z成分の初期値を指定します。