Searched defs:write (Results 51 - 75 of 673) sorted by relevance

1234567891011>>

/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
H A DCylinderCollisionShape.java84 public void write(JmeExporter ex) throws IOException { method in class:CylinderCollisionShape
85 super.write(ex);
87 capsule.write(halfExtents, "halfExtents", new Vector3f(0.5f, 0.5f, 0.5f));
88 capsule.write(axis, "axis", 1);
H A DHullCollisionShape.java35 public void write(JmeExporter ex) throws IOException { method in class:HullCollisionShape
36 super.write(ex);
39 capsule.write(points, "points", null);
H A DPlaneCollisionShape.java41 public void write(JmeExporter ex) throws IOException { method in class:PlaneCollisionShape
42 super.write(ex);
44 capsule.write(plane, "collisionPlane", new Plane());
H A DSphereCollisionShape.java66 public void write(JmeExporter ex) throws IOException { method in class:SphereCollisionShape
67 super.write(ex);
69 capsule.write(radius, "radius", 0.5f);
/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/collision/shapes/infos/
H A DChildCollisionShape.java33 public void write(JmeExporter ex) throws IOException { method in class:ChildCollisionShape
35 capsule.write(location, "location", new Vector3f());
36 capsule.write(rotation, "rotation", new Matrix3f());
37 capsule.write(shape, "shape", new BoxCollisionShape(new Vector3f(1, 1, 1)));
/external/jmonkeyengine/engine/src/core/com/jme3/animation/
H A DCompactQuaternionArray.java71 public void write(JmeExporter ex) throws IOException { method in class:CompactQuaternionArray
74 out.write(array, "array", null);
75 out.write(index, "index", null);
H A DCompactVector3Array.java71 public void write(JmeExporter ex) throws IOException { method in class:CompactVector3Array
74 out.write(array, "array", null);
75 out.write(index, "index", null);
/external/jmonkeyengine/engine/src/core/com/jme3/audio/
H A DAudioKey.java122 public void write(JmeExporter ex) throws IOException{ method in class:AudioKey
123 super.write(ex);
125 oc.write(stream, "do_stream", false);
126 oc.write(streamCache, "use_stream_cache", false);
H A DFilter.java51 public void write(JmeExporter ex) throws IOException { method in class:Filter
H A DLowPassFilter.java80 public void write(JmeExporter ex) throws IOException{ method in class:LowPassFilter
81 super.write(ex);
83 oc.write(volume, "volume", 0);
84 oc.write(highFreqVolume, "hf_volume", 0);
/external/jmonkeyengine/engine/src/core/com/jme3/cinematic/
H A DKeyFrame.java64 public void write(JmeExporter ex) throws IOException { method in class:KeyFrame
67 oc.write(index, "index", 0);
/external/jmonkeyengine/engine/src/core/com/jme3/font/
H A DKerning.java63 public void write(JmeExporter ex) throws IOException { method in class:Kerning
65 oc.write(second, "second", 0);
66 oc.write(amount, "amount", 0);
/external/jmonkeyengine/engine/src/core/com/jme3/light/
H A DDirectionalLight.java91 public void write(JmeExporter ex) throws IOException { method in class:DirectionalLight
92 super.write(ex);
94 oc.write(direction, "direction", null);
/external/jmonkeyengine/engine/src/core/com/jme3/scene/
H A DUserData.java102 public void write(JmeExporter ex) throws IOException { method in class:UserData
104 oc.write(type, "type", (byte)0);
109 oc.write(i, "intVal", 0);
113 oc.write(f, "floatVal", 0f);
117 oc.write(b, "boolVal", false);
121 oc.write(s, "strVal", null);
125 oc.write(l, "longVal", 0l);
/external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
H A DLine.java107 public void write(JmeExporter ex) throws IOException { method in class:Line
108 super.write(ex);
111 out.write(start, "startVertex", null);
112 out.write(end, "endVertex", null);
/external/jmonkeyengine/engine/src/core/com/jme3/shader/
H A DShaderVariable.java57 public void write(JmeExporter ex) throws IOException{ method in class:ShaderVariable
59 oc.write(name, "name", null);
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
H A DBoxCollisionShape.java67 public void write(JmeExporter ex) throws IOException { method in class:BoxCollisionShape
68 super.write(ex);
70 capsule.write(halfExtents, "halfExtents", new Vector3f(1, 1, 1));
H A DConeCollisionShape.java49 public void write(JmeExporter ex) throws IOException { method in class:ConeCollisionShape
50 super.write(ex);
52 capsule.write(radius, "radius", 0.5f);
53 capsule.write(height, "height", 0.5f);
54 capsule.write(axis, "axis", 0.5f);
H A DCylinderCollisionShape.java86 public void write(JmeExporter ex) throws IOException { method in class:CylinderCollisionShape
87 super.write(ex);
89 capsule.write(halfExtents, "halfExtents", new Vector3f(0.5f, 0.5f, 0.5f));
90 capsule.write(axis, "axis", 1);
H A DHullCollisionShape.java34 public void write(JmeExporter ex) throws IOException { method in class:HullCollisionShape
35 super.write(ex);
38 capsule.write(points, "points", null);
H A DPlaneCollisionShape.java40 public void write(JmeExporter ex) throws IOException { method in class:PlaneCollisionShape
41 super.write(ex);
43 capsule.write(plane, "collisionPlane", new Plane());
H A DSphereCollisionShape.java66 public void write(JmeExporter ex) throws IOException { method in class:SphereCollisionShape
67 super.write(ex);
69 capsule.write(radius, "radius", 0.5f);
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/lodcalc/
H A DLodDistanceCalculatorFactory.java68 public void write(JmeExporter ex) throws IOException { method in class:LodDistanceCalculatorFactory
70 c.write(lodThreshold, "lodThreshold", null);
71 c.write(lodThresholdSize, "lodThresholdSize", 2);
H A DLodPerspectiveCalculatorFactory.java66 public void write(JmeExporter ex) throws IOException { method in class:LodPerspectiveCalculatorFactory
/external/marisa-trie/lib/marisa/
H A Dwriter.h23 void write(const T &obj) { function in class:marisa::Writer
28 void write(const T *objs, std::size_t num_objs) { function in class:marisa::Writer

Completed in 400 milliseconds

1234567891011>>