/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/joints/ |
SixDofJoint.java | 42 import com.jme3.math.Vector3f; 66 Vector3f angularUpperLimit = new Vector3f(Vector3f.POSITIVE_INFINITY); 67 Vector3f angularLowerLimit = new Vector3f(Vector3f.NEGATIVE_INFINITY); 68 Vector3f linearUpperLimit = new Vector3f(Vector3f.POSITIVE_INFINITY) [all...] |
PhysicsJoint.java | 36 import com.jme3.math.Vector3f; 50 protected Vector3f pivotA; 51 protected Vector3f pivotB; 61 public PhysicsJoint(PhysicsRigidBody nodeA, PhysicsRigidBody nodeB, Vector3f pivotA, Vector3f pivotB) { 107 public Vector3f getPivotA() { 111 public Vector3f getPivotB() { 135 this.pivotA = (Vector3f) capsule.readSavable("pivotA", new Vector3f()); 136 this.pivotB = (Vector3f) capsule.readSavable("pivotB", new Vector3f()) [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/effect/shapes/ |
EmitterBoxShape.java | 39 import com.jme3.math.Vector3f; 44 private Vector3f min, len; 49 public EmitterBoxShape(Vector3f min, Vector3f max) { 55 this.len = new Vector3f(); 60 public void getRandomPoint(Vector3f store) { 73 public void getRandomPointAndNormal(Vector3f store, Vector3f normal) { 89 public Vector3f getMin() { 93 public void setMin(Vector3f min) [all...] |
EmitterMeshConvexHullShape.java | 4 import com.jme3.math.Vector3f; 39 public void getRandomPoint(Vector3f store) { 57 public void getRandomPointAndNormal(Vector3f store, Vector3f normal) {
|
EmitterPointShape.java | 37 import com.jme3.math.Vector3f; 42 private Vector3f point; 47 public EmitterPointShape(Vector3f point) { 63 public void getRandomPoint(Vector3f store) { 74 public void getRandomPointAndNormal(Vector3f store, Vector3f normal) { 78 public Vector3f getPoint() { 82 public void setPoint(Vector3f point) { 94 this.point = (Vector3f) im.getCapsule(this).readSavable("point", null);
|
EmitterMeshVertexShape.java | 8 import com.jme3.math.Vector3f; 25 protected List<List<Vector3f>> vertices; 26 protected List<List<Vector3f>> normals; 49 Map<Vector3f, Vector3f> vertToNormalMap = new HashMap<Vector3f, Vector3f>(); 51 this.vertices = new ArrayList<List<Vector3f>>(meshes.size()); 52 this.normals = new ArrayList<List<Vector3f>>(meshes.size()); 60 Vector3f vert = new Vector3f(vertexTable[i], vertexTable[i + 1], vertexTable[i + 2]) [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/math/ |
Plane.java | 64 protected Vector3f normal = new Vector3f();
87 public Plane(Vector3f normal, float constant) {
102 public void setNormal(Vector3f normal) {
122 public Vector3f getNormal() {
146 public Vector3f getClosestPoint(Vector3f point, Vector3f store){
153 public Vector3f getClosestPoint(Vector3f point){ [all...] |
Ray.java | 58 public Vector3f origin = new Vector3f(); 63 public Vector3f direction = new Vector3f(0, 0, 1); 82 public Ray(Vector3f origin, Vector3f direction) { 107 // public boolean intersect(Vector3f v0,Vector3f v1,Vector3f v2){ 119 public boolean intersectWhere(Triangle t, Vector3f loc) [all...] |
Transform.java | 52 private Vector3f translation = new Vector3f(); 53 private Vector3f scale = new Vector3f(1,1,1); 55 public Transform(Vector3f translation, Quaternion rot){ 60 public Transform(Vector3f translation, Quaternion rot, Vector3f scale){ 65 public Transform(Vector3f translation){ 70 this(Vector3f.ZERO, rot); 74 this(Vector3f.ZERO, Quaternion.IDENTITY) [all...] |
/external/jmonkeyengine/engine/src/test/jme3test/model/shape/ |
TestDebugShapes.java | 38 import com.jme3.math.Vector3f; 63 public void putArrow(Vector3f pos, Vector3f dir, ColorRGBA color){ 69 public void putBox(Vector3f pos, float size, ColorRGBA color){ 73 public void putGrid(Vector3f pos, ColorRGBA color){ 77 public void putSphere(Vector3f pos, ColorRGBA color){ 83 cam.setLocation(new Vector3f(2,1.5f,2)); 84 cam.lookAt(Vector3f.ZERO, Vector3f.UNIT_Y); 86 putArrow(Vector3f.ZERO, Vector3f.UNIT_X, ColorRGBA.Red) [all...] |
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/joints/ |
SixDofJoint.java | 45 import com.jme3.math.Vector3f; 66 private Vector3f angularUpperLimit = new Vector3f(Vector3f.POSITIVE_INFINITY); 67 private Vector3f angularLowerLimit = new Vector3f(Vector3f.NEGATIVE_INFINITY); 68 private Vector3f linearUpperLimit = new Vector3f(Vector3f.POSITIVE_INFINITY) [all...] |
PhysicsJoint.java | 37 import com.jme3.math.Vector3f; 49 protected Vector3f pivotA; 50 protected Vector3f pivotB; 60 public PhysicsJoint(PhysicsRigidBody nodeA, PhysicsRigidBody nodeB, Vector3f pivotA, Vector3f pivotB) { 104 public Vector3f getPivotA() { 108 public Vector3f getPivotB() { 132 this.pivotA = (Vector3f) capsule.readSavable("pivotA", new Vector3f()); 133 this.pivotB = (Vector3f) capsule.readSavable("pivotB", new Vector3f()) [all...] |
/external/jmonkeyengine/engine/src/test/jme3test/bullet/ |
PhysicsHoverControl.java | 44 import com.jme3.math.Vector3f; 65 protected Vector3f HOVER_HEIGHT_LF_START = new Vector3f(xw, 1, zw); 66 protected Vector3f HOVER_HEIGHT_RF_START = new Vector3f(-xw, 1, zw); 67 protected Vector3f HOVER_HEIGHT_LR_START = new Vector3f(xw, 1, -zw); 68 protected Vector3f HOVER_HEIGHT_RR_START = new Vector3f(-xw, 1, -zw); 69 protected Vector3f HOVER_HEIGHT_LF = new Vector3f(xw, -yw, zw) [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/shadow/ |
ShadowCamera.java | 37 import com.jme3.math.Vector3f;
47 private Vector3f[] points = new Vector3f[8];
53 points[i] = new Vector3f();
64 lightCam.setLocation(Vector3f.ZERO);
65 lightCam.lookAtDirection(dl.getDirection(), Vector3f.UNIT_Y);
|
/external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/serializers/ |
Vector3Serializer.java | 3 import com.jme3.math.Vector3f; 14 public Vector3f readObject(ByteBuffer data, Class c) throws IOException { 15 Vector3f vec3 = new Vector3f(); 23 Vector3f vec3 = (Vector3f) object;
|
/external/eigen/demos/opengl/ |
camera.h | 22 inline Frame(const Eigen::Vector3f& pos = Eigen::Vector3f::Zero(), 33 Eigen::Vector3f position; 60 void setPosition(const Eigen::Vector3f& pos); 61 inline const Eigen::Vector3f& position(void) const { return mFrame.position; } 69 void setDirection(const Eigen::Vector3f& newDirection); 70 Eigen::Vector3f direction(void) const; 71 void setUp(const Eigen::Vector3f& vectorUp); 72 Eigen::Vector3f up(void) const; 73 Eigen::Vector3f right(void) const [all...] |
/external/eigen/failtest/ |
map_on_const_type_actually_const_1.cpp | 12 Map<CV_QUALIFIER Vector3f>(ptr).coeffRef(0) = 1.0f;
|
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/ |
BoxCollisionShape.java | 38 import com.jme3.math.Vector3f; 49 private Vector3f halfExtents; 58 public BoxCollisionShape(Vector3f halfExtents) { 63 public final Vector3f getHalfExtents() { 70 capsule.write(halfExtents, "halfExtents", new Vector3f(1, 1, 1)); 76 Vector3f halfExtents = (Vector3f) capsule.readSavable("halfExtents", new Vector3f(1, 1, 1)); 89 private native long createShape(Vector3f halfExtents);
|
CollisionShape.java | 35 import com.jme3.math.Vector3f; 49 protected Vector3f scale = new Vector3f(1, 1, 1); 86 public void setScale(Vector3f scale) { 91 public Vector3f getScale() { 106 private native void setLocalScaling(long obectId, Vector3f scale); 112 capsule.write(scale, "scale", new Vector3f(1, 1, 1)); 118 this.scale = (Vector3f) capsule.readSavable("scale", new Vector3f(1, 1, 1));
|
CylinderCollisionShape.java | 38 import com.jme3.math.Vector3f; 49 protected Vector3f halfExtents; 59 public CylinderCollisionShape(Vector3f halfExtents) { 70 public CylinderCollisionShape(Vector3f halfExtents, int axis) { 76 public final Vector3f getHalfExtents() { 87 capsule.write(halfExtents, "halfExtents", new Vector3f(0.5f, 0.5f, 0.5f)); 94 halfExtents = (Vector3f) capsule.readSavable("halfExtents", new Vector3f(0.5f, 0.5f, 0.5f)); 119 private native long createShape(int axis, Vector3f halfExtents);
|
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/ |
CollisionShape.java | 36 import com.jme3.math.Vector3f; 48 protected Vector3f scale = new Vector3f(1, 1, 1); 57 public void calculateLocalInertia(float mass, javax.vecmath.Vector3f vector) { 82 public void setScale(Vector3f scale) { 96 public Vector3f getScale() { 102 capsule.write(scale, "scale", new Vector3f(1, 1, 1)); 108 this.scale = (Vector3f) capsule.readSavable("scale", new Vector3f(1, 1, 1));
|
SimplexCollisionShape.java | 13 import com.jme3.math.Vector3f; 22 private Vector3f vector1, vector2, vector3, vector4; 27 public SimplexCollisionShape(Vector3f point1, Vector3f point2, Vector3f point3, Vector3f point4) { 35 public SimplexCollisionShape(Vector3f point1, Vector3f point2, Vector3f point3) { 42 public SimplexCollisionShape(Vector3f point1, Vector3f point2) [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/animation/ |
Bone.java | 66 private Vector3f initialPos; 68 private Vector3f initialScale; 73 private Vector3f worldBindInversePos; 75 private Vector3f worldBindInverseScale; 79 private Vector3f localPos = new Vector3f(); 81 private Vector3f localScale = new Vector3f(1.0f, 1.0f, 1.0f); 85 private Vector3f worldPos = new Vector3f(); [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/bounding/ |
BoundingVolume.java | 78 protected Vector3f center = new Vector3f();
83 public BoundingVolume(Vector3f center) {
191 public final Vector3f getCenter() {
195 public final Vector3f getCenter(Vector3f store) {
200 public final void setCenter(Vector3f newCenter) {
212 public final float distanceTo(Vector3f point) {
224 public final float distanceSquaredTo(Vector3f point) {
236 public abstract float distanceToEdge(Vector3f point); [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/light/ |
SpotLight.java | 37 import com.jme3.math.Vector3f; 57 protected Vector3f position = new Vector3f(); 58 protected Vector3f direction = new Vector3f(0,-1,0); 92 public Vector3f getDirection() { 96 public void setDirection(Vector3f direction) { 100 public Vector3f getPosition() { 104 public void setPosition(Vector3f position) { 196 oc.write(direction, "direction", new Vector3f()); [all...] |