Searched defs:write (Results 176 - 200 of 673) sorted by relevance

1234567891011>>

/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
H A DCompoundCollisionShape.java136 public void write(JmeExporter ex) throws IOException { method in class:CompoundCollisionShape
137 super.write(ex);
H A DGImpactCollisionShape.java108 public void write(JmeExporter ex) throws IOException { method in class:GImpactCollisionShape
109 super.write(ex);
111 // capsule.write(worldScale, "worldScale", new Vector3f(1, 1, 1));
112 capsule.write(numVertices, "numVertices", 0);
113 capsule.write(numTriangles, "numTriangles", 0);
114 capsule.write(vertexStride, "vertexStride", 0);
115 capsule.write(triangleIndexStride, "triangleIndexStride", 0);
117 capsule.write(triangleIndexBase.array(), "triangleIndexBase", new byte[0]);
118 capsule.write(vertexBase.array(), "vertexBase", new byte[0]);
H A DHeightfieldCollisionShape.java119 public void write(JmeExporter ex) throws IOException { method in class:HeightfieldCollisionShape
120 super.write(ex);
122 capsule.write(heightStickWidth, "heightStickWidth", 0);
123 capsule.write(heightStickLength, "heightStickLength", 0);
124 capsule.write(heightScale, "heightScale", 0);
125 capsule.write(minHeight, "minHeight", 0);
126 capsule.write(maxHeight, "maxHeight", 0);
127 capsule.write(upAxis, "upAxis", 1);
128 capsule.write(heightfieldData, "heightfieldData", new float[0]);
129 capsule.write(flipQuadEdge
[all...]
H A DMeshCollisionShape.java105 public void write(JmeExporter ex) throws IOException { method in class:MeshCollisionShape
106 super.write(ex);
108 capsule.write(numVertices, "numVertices", 0);
109 capsule.write(numTriangles, "numTriangles", 0);
110 capsule.write(vertexStride, "vertexStride", 0);
111 capsule.write(triangleIndexStride, "triangleIndexStride", 0);
113 capsule.write(triangleIndexBase.array(), "triangleIndexBase", new byte[0]);
114 capsule.write(vertexBase.array(), "vertexBase", new byte[0]);
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/joints/
H A DConeJoint.java102 public void write(JmeExporter ex) throws IOException { method in class:ConeJoint
103 super.write(ex);
105 capsule.write(rotA, "rotA", new Matrix3f());
106 capsule.write(rotB, "rotB", new Matrix3f());
108 capsule.write(angularOnly, "angularOnly", false);
109 capsule.write(swingSpan1, "swingSpan1", 1e30f);
110 capsule.write(swingSpan2, "swingSpan2", 1e30f);
111 capsule.write(twistSpan, "twistSpan", 1e30f);
H A DPhysicsJoint.java123 public void write(JmeExporter ex) throws IOException { method in class:PhysicsJoint
125 capsule.write(nodeA, "nodeA", null);
126 capsule.write(nodeB, "nodeB", null);
127 capsule.write(pivotA, "pivotA", null);
128 capsule.write(pivotB, "pivotB", null);
H A DPoint2PointJoint.java102 public void write(JmeExporter ex) throws IOException { method in class:Point2PointJoint
103 super.write(ex);
105 cap.write(getDamping(), "damping", 1.0f);
106 cap.write(getTau(), "tau", 0.3f);
107 cap.write(getImpulseClamp(), "impulseClamp", 0f);
/external/jmonkeyengine/engine/src/core/com/jme3/animation/
H A DAnimation.java188 public void write(JmeExporter ex) throws IOException { method in class:Animation
190 out.write(name, "name", null);
191 out.write(length, "length", 0f);
192 out.write(tracks, "tracks", null);
H A DBoneTrack.java287 public void write(JmeExporter ex) throws IOException { method in class:BoneTrack
289 oc.write(targetBoneIndex, "boneIndex", 0);
290 oc.write(translations, "translations", null);
291 oc.write(rotations, "rotations", null);
292 oc.write(times, "times", null);
293 oc.write(scales, "scales", null);
H A DPoseTrack.java84 public void write(JmeExporter e) throws IOException { method in class:PoseTrack.PoseFrame
86 out.write(poses, "poses", null);
87 out.write(weights, "weights", null);
172 public void write(JmeExporter e) throws IOException { method in class:PoseTrack
174 out.write(targetMeshIndex, "meshIndex", 0);
175 out.write(frames, "frames", null);
176 out.write(times, "times", null);
H A DSkeleton.java292 public void write(JmeExporter ex) throws IOException { method in class:Skeleton
294 output.write(rootBones, "rootBones", null);
295 output.write(boneList, "boneList", null);
H A DSpatialTrack.java226 public void write(JmeExporter ex) throws IOException { method in class:SpatialTrack
228 oc.write(translations, "translations", null);
229 oc.write(rotations, "rotations", null);
230 oc.write(times, "times", null);
231 oc.write(scales, "scales", null);
/external/jmonkeyengine/engine/src/core/com/jme3/asset/
H A DAssetKey.java192 public void write(JmeExporter ex) throws IOException { method in class:AssetKey
194 oc.write(name, "name", null);
/external/jmonkeyengine/engine/src/core/com/jme3/cinematic/
H A DTimeLine.java105 public void write(JmeExporter ex) throws IOException { method in class:TimeLine
/external/jmonkeyengine/engine/src/core/com/jme3/cinematic/events/
H A DAnimationTrack.java161 public void write(JmeExporter ex) throws IOException { method in class:AnimationTrack
162 super.write(ex);
164 oc.write(modelName, "modelName", "");
165 oc.write(animationName, "animationName", "");
H A DPositionTrack.java108 public void write(JmeExporter ex) throws IOException { method in class:PositionTrack
109 super.write(ex);
111 oc.write(spatialName, "spatialName", "");
112 oc.write(endPosition, "endPosition", null);
H A DRotationTrack.java112 public void write(JmeExporter ex) throws IOException { method in class:RotationTrack
113 super.write(ex);
115 oc.write(spatialName, "spatialName", "");
116 oc.write(endRotation, "endRotation", null);
H A DScaleTrack.java107 public void write(JmeExporter ex) throws IOException { method in class:ScaleTrack
108 super.write(ex);
110 oc.write(spatialName, "spatialName", "");
111 oc.write(endScale, "endScale", null);
H A DSoundTrack.java168 public void write(JmeExporter ex) throws IOException { method in class:SoundTrack
169 super.write(ex);
171 oc.write(path, "path", "");
172 oc.write(stream, "stream", false);
/external/jmonkeyengine/engine/src/core/com/jme3/effect/influencers/
H A DDefaultParticleInfluencer.java49 public void write(JmeExporter ex) throws IOException { method in class:DefaultParticleInfluencer
51 oc.write(startVelocity, "startVelocity", Vector3f.ZERO);
52 oc.write(velocityVariation, "variation", 0.2f);
H A DNewtonianParticleInfluencer.java126 public void write(JmeExporter ex) throws IOException { method in class:NewtonianParticleInfluencer
127 super.write(ex);
129 oc.write(normalVelocity, "normalVelocity", 0.0f);
130 oc.write(surfaceTangentFactor, "surfaceTangentFactor", 0.0f);
131 oc.write(surfaceTangentRotation, "surfaceTangentRotation", 0.0f);
/external/jmonkeyengine/engine/src/core/com/jme3/effect/shapes/
H A DEmitterBoxShape.java106 public void write(JmeExporter ex) throws IOException { method in class:EmitterBoxShape
108 oc.write(min, "min", null);
109 oc.write(len, "length", null);
/external/jmonkeyengine/engine/src/core/com/jme3/export/
H A DOutputCapsule.java52 public void write(byte value, String name, byte defVal) throws IOException; method in interface:OutputCapsule
53 public void write(byte[] value, String name, byte[] defVal) throws IOException; method in interface:OutputCapsule
54 public void write(byte[][] value, String name, byte[][] defVal) throws IOException; method in interface:OutputCapsule
59 public void write(int value, String name, int defVal) throws IOException; method in interface:OutputCapsule
60 public void write(int[] value, String name, int[] defVal) throws IOException; method in interface:OutputCapsule
61 public void write(int[][] value, String name, int[][] defVal) throws IOException; method in interface:OutputCapsule
66 public void write(float value, String name, float defVal) throws IOException; method in interface:OutputCapsule
67 public void write(float[] value, String name, float[] defVal) throws IOException; method in interface:OutputCapsule
68 public void write(float[][] value, String name, float[][] defVal) throws IOException; method in interface:OutputCapsule
73 public void write(doubl method in interface:OutputCapsule
74 public void write(double[] value, String name, double[] defVal) throws IOException; method in interface:OutputCapsule
75 public void write(double[][] value, String name, double[][] defVal) throws IOException; method in interface:OutputCapsule
80 public void write(long value, String name, long defVal) throws IOException; method in interface:OutputCapsule
81 public void write(long[] value, String name, long[] defVal) throws IOException; method in interface:OutputCapsule
82 public void write(long[][] value, String name, long[][] defVal) throws IOException; method in interface:OutputCapsule
87 public void write(short value, String name, short defVal) throws IOException; method in interface:OutputCapsule
88 public void write(short[] value, String name, short[] defVal) throws IOException; method in interface:OutputCapsule
89 public void write(short[][] value, String name, short[][] defVal) throws IOException; method in interface:OutputCapsule
94 public void write(boolean value, String name, boolean defVal) throws IOException; method in interface:OutputCapsule
95 public void write(boolean[] value, String name, boolean[] defVal) throws IOException; method in interface:OutputCapsule
96 public void write(boolean[][] value, String name, boolean[][] defVal) throws IOException; method in interface:OutputCapsule
101 public void write(String value, String name, String defVal) throws IOException; method in interface:OutputCapsule
102 public void write(String[] value, String name, String[] defVal) throws IOException; method in interface:OutputCapsule
103 public void write(String[][] value, String name, String[][] defVal) throws IOException; method in interface:OutputCapsule
108 public void write(BitSet value, String name, BitSet defVal) throws IOException; method in interface:OutputCapsule
113 public void write(Savable object, String name, Savable defVal) throws IOException; method in interface:OutputCapsule
114 public void write(Savable[] objects, String name, Savable[] defVal) throws IOException; method in interface:OutputCapsule
115 public void write(Savable[][] objects, String name, Savable[][] defVal) throws IOException; method in interface:OutputCapsule
137 public void write(FloatBuffer value, String name, FloatBuffer defVal) throws IOException; method in interface:OutputCapsule
142 public void write(IntBuffer value, String name, IntBuffer defVal) throws IOException; method in interface:OutputCapsule
147 public void write(ByteBuffer value, String name, ByteBuffer defVal) throws IOException; method in interface:OutputCapsule
152 public void write(ShortBuffer value, String name, ShortBuffer defVal) throws IOException; method in interface:OutputCapsule
157 public void write(Enum value, String name, Enum defVal) throws IOException; method in interface:OutputCapsule
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/light/
H A DLight.java182 public void write(JmeExporter ex) throws IOException { method in class:Light
184 oc.write(color, "color", null);
185 oc.write(enabled, "enabled", true);
186 oc.write(name, "name", null);
/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DLine.java216 public void write(JmeExporter e) throws IOException { method in class:Line
218 capsule.write(origin, "origin", Vector3f.ZERO);
219 capsule.write(direction, "direction", Vector3f.ZERO);

Completed in 492 milliseconds

1234567891011>>