Lines Matching defs:convert

54     public static com.jme3.math.Vector3f convert(javax.vecmath.Vector3f oldVec) {
56 convert(oldVec, newVec);
60 public static com.jme3.math.Vector3f convert(javax.vecmath.Vector3f oldVec, com.jme3.math.Vector3f newVec) {
67 public static javax.vecmath.Vector3f convert(com.jme3.math.Vector3f oldVec) {
69 convert(oldVec, newVec);
73 public static javax.vecmath.Vector3f convert(com.jme3.math.Vector3f oldVec, javax.vecmath.Vector3f newVec) {
80 public static javax.vecmath.Quat4f convert(com.jme3.math.Quaternion oldQuat, javax.vecmath.Quat4f newQuat) {
88 public static javax.vecmath.Quat4f convert(com.jme3.math.Quaternion oldQuat) {
90 convert(oldQuat, newQuat);
94 public static com.jme3.math.Quaternion convert(javax.vecmath.Quat4f oldQuat, com.jme3.math.Quaternion newQuat) {
99 public static com.jme3.math.Quaternion convert(javax.vecmath.Quat4f oldQuat) {
101 convert(oldQuat, newQuat);
105 public static com.jme3.math.Quaternion convert(javax.vecmath.Matrix3f oldMatrix, com.jme3.math.Quaternion newQuaternion) {
143 public static javax.vecmath.Matrix3f convert(com.jme3.math.Quaternion oldQuaternion, javax.vecmath.Matrix3f newMatrix) {
176 public static com.jme3.math.Matrix3f convert(javax.vecmath.Matrix3f oldMatrix) {
178 convert(oldMatrix, newMatrix);
182 public static com.jme3.math.Matrix3f convert(javax.vecmath.Matrix3f oldMatrix, com.jme3.math.Matrix3f newMatrix) {
195 public static javax.vecmath.Matrix3f convert(com.jme3.math.Matrix3f oldMatrix) {
197 convert(oldMatrix, newMatrix);
201 public static javax.vecmath.Matrix3f convert(com.jme3.math.Matrix3f oldMatrix, javax.vecmath.Matrix3f newMatrix) {
214 public static com.bulletphysics.linearmath.Transform convert(com.jme3.math.Transform in, com.bulletphysics.linearmath.Transform out) {
215 convert(in.getTranslation(), out.origin);
216 convert(in.getRotation(), out.basis);
220 public static com.jme3.math.Transform convert(com.bulletphysics.linearmath.Transform in, com.jme3.math.Transform out) {
221 convert(in.origin, out.getTranslation());
222 convert(in.basis, out.getRotation());
226 public static IndexedMesh convert(Mesh mesh) {
256 public static Mesh convert(IndexedMesh mesh) {
279 public static Mesh convert(HeightfieldTerrainShape heightfieldShape) {