HomeSort by relevance Sort by last modified time
    Searched refs:tempNormal (Results 1 - 2 of 2) sorted by null

  /external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
Torus.java 134 Vector3f radialAxis = new Vector3f(), torusMiddle = new Vector3f(), tempNormal = new Vector3f();
152 tempNormal.set(radialAxis).multLocal(cosPhi);
153 tempNormal.z += sinPhi;
154 fnb.put(tempNormal.x).put(tempNormal.y).put(
155 tempNormal.z);
157 tempNormal.multLocal(innerRadius).addLocal(torusMiddle);
158 fpb.put(tempNormal.x).put(tempNormal.y).put(
159 tempNormal.z)
    [all...]
Cylinder.java 285 Vector3f tempNormal = new Vector3f();
316 tempNormal.set(cos[radialCount], sin[radialCount], 0.0f);
321 vNormal = tempNormal;
333 tempNormal.multLocal((radius - radius2) * axisFraction + radius2)
335 pb.put(tempNormal.x).put(tempNormal.y).put(tempNormal.z);

Completed in 180 milliseconds