本文整理匯總了TypeScript中gl-matrix.vec3.normalize方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript vec3.normalize方法的具體用法?TypeScript vec3.normalize怎麽用?TypeScript vec3.normalize使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類gl-matrix.vec3
的用法示例。
在下文中一共展示了vec3.normalize方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1:
outVec3 = vec3.min(outVec3, vec3A, vec3B);
outVec3 = vec3.max(outVec3, vec3A, vec3B);
outVec3 = vec3.round(outVec3, vec3A);
outVec3 = vec3.scale(outVec3, vec3A, 2);
outVec3 = vec3.scaleAndAdd(outVec3, vec3A, vec3B, 0.5);
outVal = vec3.distance(vec3A, vec3B);
outVal = vec3.dist(vec3A, vec3B);
outVal = vec3.squaredDistance(vec3A, vec3B);
outVal = vec3.sqrDist(vec3A, vec3B);
outVal = vec3.length(vec3A);
outVal = vec3.len(vec3A);
outVal = vec3.squaredLength(vec3A);
outVal = vec3.sqrLen(vec3A);
outVec3 = vec3.negate(outVec3, vec3A);
outVec3 = vec3.inverse(outVec3, vec3A);
outVec3 = vec3.normalize(outVec3, vec3A);
outVal = vec3.dot(vec3A, vec3B);
outVec3 = vec3.cross(outVec3, vec3A, vec3B);
outVec3 = vec3.lerp(outVec3, vec3A, vec3B, 0.5);
outVec3 = vec3.hermite(outVec3, vec3A, vec3B, vec3A, vec3B, 0.5);
outVec3 = vec3.bezier(outVec3, vec3A, vec3B, vec3A, vec3B, 0.5);
outVec3 = vec3.random(outVec3);
outVec3 = vec3.random(outVec3, 5.0);
outVec3 = vec3.transformMat3(outVec3, vec3A, mat3A);
outVec3 = vec3.transformMat4(outVec3, vec3A, mat4A);
outVec3 = vec3.transformQuat(outVec3, vec3A, quatA);
outVec3 = vec3.rotateX(outVec3, vec3A, vec3B, Math.PI);
outVec3 = vec3.rotateY(outVec3, vec3A, vec3B, Math.PI);
outVec3 = vec3.rotateZ(outVec3, vec3A, vec3B, Math.PI);
vecArray = vec3.forEach(vecArray, 0, 0, 0, vec3.normalize);
outVal = vec3.angle(vec3A, vec3B);
示例2: moveAlong
moveAlong(elapsedTime: number, speed: number): Vec3 {
// If there is no further waypoint, we've arrived at the end and we
// always return the current position.
if (this.done) {
return vec3.clone(this.currentPosition);
}
// The vector from the current position to the next waypoint.
var vector = vec3.subtract(vec3.create(), this.waypoints[0], this.currentPosition)
, vectorLength = vec3.length(vector)
, distanceMoved = speed * elapsedTime;
if (vectorLength < distanceMoved) {
// The remaining distance in the current segment is less than what
// we moved, jump to the next waypoint and move along the next path
// segment from there.
vec3.copy(this.currentPosition, this.waypoints.shift());
this.currentHeading = normalizeHeading(Math.atan2(vector[1], vector[0]));
return this.moveAlong(elapsedTime - vectorLength / speed, speed);
}
// We have not yet reached the next waypoint. Move along the vector
// towards it and update the heading.
vec3.add(this.currentPosition, this.currentPosition, vec3.scale(vec3.create(), vec3.normalize(vec3.create(), vector), distanceMoved));
this.currentHeading = normalizeHeading(Math.atan2(vector[1], vector[0]));
return vec3.clone(this.currentPosition);
}