本文整理汇总了Java中ch.fhnw.util.math.Vec3.normalize方法的典型用法代码示例。如果您正苦于以下问题:Java Vec3.normalize方法的具体用法?Java Vec3.normalize怎么用?Java Vec3.normalize使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ch.fhnw.util.math.Vec3
的用法示例。
在下文中一共展示了Vec3.normalize方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: initState
import ch.fhnw.util.math.Vec3; //导入方法依赖的package包/类
public void initState(double w1, double w2, double w3, double phi, double x, double y, double z) {
double q0 = Math.cos(0.5 * phi * Math.PI / 180);
Vec3 n = new Vec3(x, y, z);
n = n.normalize();
double s = Math.sin(0.5 * phi * Math.PI / 180);
this.x = new double[] { w1, w2, w3, q0, s * n.x, s * n.y, s * n.z };
}
示例2: setState
import ch.fhnw.util.math.Vec3; //导入方法依赖的package包/类
public void setState(double w1, double w2, double w3, double phi, double x, double y, double z) {
double q0 = Math.cos(0.5 * phi * Math.PI / 180);
Vec3 n = new Vec3(x, y, z);
n = n.normalize();
double s = Math.sin(0.5 * phi * Math.PI / 180);
this.x = new double[] { w1, w2, w3, q0, s * n.x, s * n.y, s * n.z };
}
示例3: makePosition
import ch.fhnw.util.math.Vec3; //导入方法依赖的package包/类
private static Vec4 makePosition(Type type, Vec3 position) {
if (type == Type.DIRECTIONAL_LIGHT) {
position = position.normalize();
return new Vec4(position.x, position.y, position.z, 0);
}
return new Vec4(position.x, position.y, position.z, 1);
}
示例4: Plane
import ch.fhnw.util.math.Vec3; //导入方法依赖的package包/类
/**
* Create plane at zero origin, with given normal.
*/
public Plane(Vec3 normal) {
this.origin = Vec3.ZERO;
this.normal = normal.normalize();
this.offset = 0;
}