Home | History | Annotate | Download | only in math

Lines Matching refs:scale0

649         float scale0 = 1 - t;

661 scale0 = FastMath.sin((1 - t) * theta) * invSinTheta;
668 this.x = (scale0 * q1.x) + (scale1 * q2.x);
669 this.y = (scale0 * q1.y) + (scale1 * q2.y);
670 this.z = (scale0 * q1.z) + (scale1 * q2.z);
671 this.w = (scale0 * q1.w) + (scale1 * q2.w);
705 float scale0 = 1 - changeAmnt;
718 scale0 = FastMath.sin((1 - changeAmnt) * theta) * invSinTheta;
725 this.x = (scale0 * this.x) + (scale1 * q2.x);
726 this.y = (scale0 * this.y) + (scale1 * q2.y);
727 this.z = (scale0 * this.z) + (scale1 * q2.z);
728 this.w = (scale0 * this.w) + (scale1 * q2.w);