文件名称:Java 3D引擎编程
文件大小:88KB
文件格式:DOC
更新时间:2015-11-15 05:46:50
java3d 3d引擎编程 3d编程 3d开发 swing
/** * 3D向量类,用来表示3D向量和3D点。 * @author cyb */ public class Vector3f { public float x,y,z; /**创建一个新的3D向量(0,0,0)*/ public Vector3f() {this(0,0,0);} /**用一个指定的Vector3D来创建一个新的Vector3D类*/ public Vector3f(Vector3f v) {this(v.x, v.y, v.z);} /**用指定的(x,y,z)来创建一个Vector3D类*/ public Vector3f(float x, float y, float z) {this.x = x;this.y = y;this.z = z;} /**用指定的Vector3D设置这个向量*/ public void setTo(Vector3f v) {setTo(v.x, v.y, v.z);} /**用指定的(x,y,z)设置这个向量*/ public void setTo(float x, float y, float z) {this.x = x;this.y = y;this.z = z;} }