/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/joints/ |
D | PhysicsJoint.java | 130 this.nodeA = ((PhysicsRigidBody) capsule.readSavable("nodeA", new PhysicsRigidBody())); in read() 131 this.nodeB = (PhysicsRigidBody) capsule.readSavable("nodeB", new PhysicsRigidBody()); in read() 132 this.pivotA = (Vector3f) capsule.readSavable("pivotA", new Vector3f()); in read() 133 this.pivotB = (Vector3f) capsule.readSavable("pivotB", new Vector3f()); in read()
|
D | SixDofJoint.java | 172 …setAngularUpperLimit((Vector3f) capsule.readSavable("angularUpperLimit", new Vector3f(Vector3f.POS… in read() 173 …setAngularLowerLimit((Vector3f) capsule.readSavable("angularLowerLimit", new Vector3f(Vector3f.NEG… in read() 174 …setLinearUpperLimit((Vector3f) capsule.readSavable("linearUpperLimit", new Vector3f(Vector3f.POSIT… in read() 175 …setLinearLowerLimit((Vector3f) capsule.readSavable("linearLowerLimit", new Vector3f(Vector3f.NEGAT… in read() 190 …getTranslationalLimitMotor().setAccumulatedImpulse((Vector3f) capsule.readSavable("transMotor_Accu… in read() 193 …getTranslationalLimitMotor().setLowerLimit((Vector3f) capsule.readSavable("transMotor_LowerLimit",… in read() 195 …getTranslationalLimitMotor().setUpperLimit((Vector3f) capsule.readSavable("transMotor_UpperLimit",… in read()
|
D | ConeJoint.java | 115 this.rotA = (Matrix3f) capsule.readSavable("rotA", new Matrix3f()); in read() 116 this.rotB = (Matrix3f) capsule.readSavable("rotB", new Matrix3f()); in read()
|
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/joints/ |
D | PhysicsJoint.java | 133 this.nodeA = ((PhysicsRigidBody) capsule.readSavable("nodeA", new PhysicsRigidBody())); in read() 134 this.nodeB = (PhysicsRigidBody) capsule.readSavable("nodeB", new PhysicsRigidBody()); in read() 135 this.pivotA = (Vector3f) capsule.readSavable("pivotA", new Vector3f()); in read() 136 this.pivotB = (Vector3f) capsule.readSavable("pivotB", new Vector3f()); in read()
|
D | SixDofJoint.java | 174 …setAngularUpperLimit((Vector3f) capsule.readSavable("angularUpperLimit", new Vector3f(Vector3f.POS… in read() 175 …setAngularLowerLimit((Vector3f) capsule.readSavable("angularLowerLimit", new Vector3f(Vector3f.NEG… in read() 176 …setLinearUpperLimit((Vector3f) capsule.readSavable("linearUpperLimit", new Vector3f(Vector3f.POSIT… in read() 177 …setLinearLowerLimit((Vector3f) capsule.readSavable("linearLowerLimit", new Vector3f(Vector3f.NEGAT… in read() 192 …getTranslationalLimitMotor().setAccumulatedImpulse((Vector3f) capsule.readSavable("transMotor_Accu… in read() 195 …getTranslationalLimitMotor().setLowerLimit((Vector3f) capsule.readSavable("transMotor_LowerLimit",… in read() 197 …getTranslationalLimitMotor().setUpperLimit((Vector3f) capsule.readSavable("transMotor_UpperLimit",… in read()
|
D | ConeJoint.java | 118 this.rotA = (Matrix3f) capsule.readSavable("rotA", new Matrix3f()); in read() 119 this.rotB = (Matrix3f) capsule.readSavable("rotB", new Matrix3f()); in read()
|
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/ |
D | SimplexCollisionShape.java | 65 vector1 = (Vector3f) capsule.readSavable("simplexPoint1", null); in read() 66 vector2 = (Vector3f) capsule.readSavable("simplexPoint2", null); in read() 67 vector3 = (Vector3f) capsule.readSavable("simplexPoint3", null); in read() 68 vector4 = (Vector3f) capsule.readSavable("simplexPoint4", null); in read()
|
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/ |
D | SimplexCollisionShape.java | 65 vector1 = (Vector3f) capsule.readSavable("simplexPoint1", null); in read() 66 vector2 = (Vector3f) capsule.readSavable("simplexPoint2", null); in read() 67 vector3 = (Vector3f) capsule.readSavable("simplexPoint3", null); in read() 68 vector4 = (Vector3f) capsule.readSavable("simplexPoint4", null); in read()
|
/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/collision/shapes/infos/ |
D | ChildCollisionShape.java | 42 location = (Vector3f) capsule.readSavable("location", new Vector3f()); in read() 43 rotation = (Matrix3f) capsule.readSavable("rotation", new Matrix3f()); in read() 44 …shape = (CollisionShape) capsule.readSavable("shape", new BoxCollisionShape(new Vector3f(1, 1, 1))… in read()
|
/external/jmonkeyengine/engine/src/core/com/jme3/math/ |
D | Rectangle.java | 180 a = (Vector3f) capsule.readSavable("a", Vector3f.ZERO.clone()); in read() 181 b = (Vector3f) capsule.readSavable("b", Vector3f.ZERO.clone()); in read() 182 c = (Vector3f) capsule.readSavable("c", Vector3f.ZERO.clone()); in read()
|
D | Triangle.java | 285 pointa = (Vector3f) e.getCapsule(this).readSavable("pointa", Vector3f.ZERO.clone()); in read() 286 pointb = (Vector3f) e.getCapsule(this).readSavable("pointb", Vector3f.ZERO.clone()); in read() 287 pointc = (Vector3f) e.getCapsule(this).readSavable("pointc", Vector3f.ZERO.clone()); in read()
|
D | Transform.java | 301 rot = (Quaternion)capsule.readSavable("rot", new Quaternion()); in read() 302 translation = (Vector3f)capsule.readSavable("translation", Vector3f.ZERO); in read() 303 scale = (Vector3f)capsule.readSavable("scale", Vector3f.UNIT_XYZ); in read()
|
D | Ring.java | 214 center = (Vector3f) capsule.readSavable("center", in read() 217 .readSavable("up", Vector3f.UNIT_Z.clone()); in read()
|
/external/jmonkeyengine/engine/src/core/com/jme3/audio/ |
D | AudioNode.java | 764 audioKey = (AudioKey) ic.readSavable("key", null); in read() 766 audioKey = (AudioKey) ic.readSavable("audio_key", null); in read() 773 dryFilter = (Filter) ic.readSavable("dry_filter", null); in read() 775 velocity = (Vector3f) ic.readSavable("velocity", null); in read() 777 reverbFilter = (Filter) ic.readSavable("reverb_filter", null); in read() 782 direction = (Vector3f) ic.readSavable("direction", null); in read()
|
/external/jmonkeyengine/engine/src/core/com/jme3/cinematic/events/ |
D | MotionTrack.java | 211 lookAt = (Vector3f) in.readSavable("lookAt", Vector3f.ZERO); in read() 212 upVector = (Vector3f) in.readSavable("upVector", Vector3f.UNIT_Y); in read() 213 rotation = (Quaternion) in.readSavable("rotation", Quaternion.IDENTITY); in read() 215 path = (MotionPath) in.readSavable("path", null); in read()
|
/external/jmonkeyengine/engine/src/core/com/jme3/material/ |
D | Technique.java | 254 def = (TechniqueDef) ic.readSavable("def", null); in read() 256 defines = (DefineList) ic.readSavable("defines", null); in read() 257 shader = (Shader) ic.readSavable("shader", null); in read()
|
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/objects/ |
D | VehicleWheel.java | 366 wheelSpatial = (Spatial) capsule.readSavable("wheelSpatial", null); in read() 368 location = (Vector3f) capsule.readSavable("wheelLocation", new Vector3f()); in read() 369 direction = (Vector3f) capsule.readSavable("wheelDirection", new Vector3f()); in read() 370 axle = (Vector3f) capsule.readSavable("wheelAxle", new Vector3f()); in read()
|
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/objects/ |
D | VehicleWheel.java | 346 wheelSpatial = (Spatial) capsule.readSavable("wheelSpatial", null); in read() 348 location = (Vector3f) capsule.readSavable("wheelLocation", new Vector3f()); in read() 349 direction = (Vector3f) capsule.readSavable("wheelDirection", new Vector3f()); in read() 350 axle = (Vector3f) capsule.readSavable("wheelAxle", new Vector3f()); in read()
|
/external/jmonkeyengine/engine/src/core/com/jme3/effect/shapes/ |
D | EmitterBoxShape.java | 115 min = (Vector3f) ic.readSavable("min", null); in read() 116 len = (Vector3f) ic.readSavable("length", null); in read()
|
/external/jmonkeyengine/engine/src/core-effects/com/jme3/water/ |
D | WaterFilter.java | 351 lightDirection = (Vector3f) ic.readSavable("lightDirection", new Vector3f(0, -1, 0)); in read() 352 lightColor = (ColorRGBA) ic.readSavable("lightColor", ColorRGBA.White); in read() 354 …waterColor = (ColorRGBA) ic.readSavable("waterColor", new ColorRGBA(0.0078f, 0.3176f, 0.5f, 1.0f)); in read() 355 …deepWaterColor = (ColorRGBA) ic.readSavable("deepWaterColor", new ColorRGBA(0.0039f, 0.00196f, 0.1… in read() 357 … colorExtinction = (Vector3f) ic.readSavable("colorExtinction", new Vector3f(5.0f, 20.0f, 30.0f)); in read() 366 … foamExistence = (Vector3f) ic.readSavable("foamExistence", new Vector3f(0.45f, 4.35f, 1.5f)); in read() 371 windDirection = (Vector2f) ic.readSavable("windDirection", new Vector2f(0.0f, -1.0f)); in read()
|
/external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/ |
D | Line.java | 120 start = (Vector3f) in.readSavable("startVertex", null); in read() 121 end = (Vector3f) in.readSavable("endVertex", null); in read()
|
/external/jmonkeyengine/engine/src/core/com/jme3/animation/ |
D | SpatialTrack.java | 237 translations = (CompactVector3Array) ic.readSavable("translations", null); in read() 238 rotations = (CompactQuaternionArray) ic.readSavable("rotations", null); in read() 240 scales = (CompactVector3Array) ic.readSavable("scales", null); in read()
|
D | Bone.java | 598 initialPos = (Vector3f) input.readSavable("initialPos", null); in read() 599 initialRot = (Quaternion) input.readSavable("initialRot", null); in read() 600 initialScale = (Vector3f) input.readSavable("initialScale", new Vector3f(1.0f, 1.0f, 1.0f)); in read() 601 attachNode = (Node) input.readSavable("attachNode", null); in read()
|
/external/jmonkeyengine/engine/src/core/com/jme3/light/ |
D | SpotLight.java | 209 direction = (Vector3f) ic.readSavable("direction", new Vector3f()); in read() 210 position = (Vector3f) ic.readSavable("position", new Vector3f()); in read()
|
/external/jmonkeyengine/engine/src/core/com/jme3/scene/control/ |
D | BillboardControl.java | 302 orient = (Matrix3f) capsule.readSavable("orient", null); in read() 303 look = (Vector3f) capsule.readSavable("look", null); in read() 304 left = (Vector3f) capsule.readSavable("left", null); in read()
|