HomeSort by relevance Sort by last modified time
    Searched refs:Box (Results 26 - 50 of 148) sorted by null

12 3 4 5 6

  /external/jmonkeyengine/engine/src/test/jme3test/app/
TestReleaseDirectMemory.java 39 import com.jme3.scene.shape.Box;
53 Box b = new Box(Vector3f.ZERO, 1, 1, 1);
54 Geometry geom = new Geometry("Box", b);
TestAppStateLifeCycle.java 43 import com.jme3.scene.shape.Box;
60 Box b = new Box(Vector3f.ZERO, 1, 1, 1);
61 Geometry geom = new Geometry("Box", b);
  /external/jmonkeyengine/engine/src/test/jme3test/niftygui/
TestNiftyGui.java 40 import com.jme3.scene.shape.Box;
56 Box b = new Box(Vector3f.ZERO, 1, 1, 1);
57 Geometry geom = new Geometry("Box", b);
TestNiftyToMesh.java 42 import com.jme3.scene.shape.Box;
82 Box b = new Box(Vector3f.ZERO, 1, 1, 1);
83 Geometry geom = new Geometry("Box", b);
  /external/jmonkeyengine/engine/src/test/jme3test/post/
TestHDR.java 40 import com.jme3.scene.shape.Box;
54 Box boxMesh = new Box(Vector3f.ZERO, 1, 1, 1);
55 Geometry box = new Geometry("Box", boxMesh); local
58 // box.setMaterial(mat);
62 box.setMaterial(mat);
64 return box;
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/fragment/
MovieFragmentBox.java 20 import com.coremedia.iso.boxes.Box;
28 * aligned(8) class MovieFragmentBox extends Box(moof){
57 Box b = this;
60 for (Box box : b.getParent().getBoxes()) {
61 if (b == box) {
64 offset += box.getSize();
  /external/jmonkeyengine/engine/src/test/jme3test/batching/
TestBatchNode.java 18 import com.jme3.scene.shape.Box;
44 Box boxshape4 = new Box(Vector3f.ZERO, 1f, 1f, 1f );
55 Box box = new Box(Vector3f.ZERO, 1f, 1f, 1f); local
56 cube2 = new Geometry("cube2", box);
  /external/jmonkeyengine/engine/src/test/jme3test/model/anim/
TestAnimationFactory.java 13 import com.jme3.scene.shape.Box;
34 Box box = new Box(1, 1, 1); local
35 Geometry geom = new Geometry("box", box);
40 Box child = new Box(0.5f, 0.5f, 0.5f);
41 Geometry childGeom = new Geometry("box", child);
TestSpatialAnim.java 13 import com.jme3.scene.shape.Box;
34 Box box = new Box(1, 1, 1); local
35 Geometry geom = new Geometry("box", box);
40 Box child = new Box(0.5f, 0.5f, 0.5f);
41 Geometry childGeom = new Geometry("box", child);
  /external/jmonkeyengine/engine/src/test/jme3test/bullet/
PhysicsTestHelper.java 23 import com.jme3.scene.shape.Box;
48 Box floorBox = new Box(140, 0.25f, 140);
61 Box box = new Box(0.25f, 0.25f, 0.25f); local
62 Geometry boxGeometry = new Geometry("Box", box);
65 //RigidBodyControl automatically uses box collision shapes when attached to single geometry with box mes
115 Box box = new Box(1, 1, 1); local
133 Box box = new Box(0.25f, 0.25f, 0.25f); local
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
Box.java 33 // $Id: Box.java 4131 2009-03-19 20:15:28Z blaine.dev $
42 * A box with solid (filled) faces.
47 public class Box extends AbstractBox {
77 * Creates a new box.
79 * The box has a center of 0,0,0 and extends in the out from the center by
80 * the given amount in <em>each</em> direction. So, for example, a box
83 * @param x the size of the box along the x axis, in both directions.
84 * @param y the size of the box along the y axis, in both directions.
85 * @param z the size of the box along the z axis, in both directions.
87 public Box(float x, float y, float z)
    [all...]
  /external/jmonkeyengine/engine/src/test/jme3test/helloworld/
HelloMaterial.java 43 import com.jme3.scene.shape.Box;
62 Box boxshape1 = new Box(new Vector3f(-3f,1.1f,0f), 1f,1f,1f);
63 Geometry cube = new Geometry("My Textured Box", boxshape1);
71 Box boxshape3 = new Box(new Vector3f(0f,0f,0f), 1f,1f,0.01f);
81 Box boxshape4 = new Box(new Vector3f(3f,-1f,0f), 1f,1f,1f);
HelloAssets.java 42 import com.jme3.scene.shape.Box;
62 /** Create a wall (Box with material and texture from test-data) */
63 Box box = new Box(Vector3f.ZERO, 2.5f,2.5f,1.0f); local
64 Spatial wall = new Geometry("Box", box );
HelloAudio.java 11 import com.jme3.scene.shape.Box;
29 /** just a blue box floating in space */
30 Box box1 = new Box(Vector3f.ZERO, 1, 1, 1);
  /external/jmonkeyengine/engine/src/core/com/jme3/util/
PlaceholderAssets.java 10 import com.jme3.scene.shape.Box;
57 Box box = new Box(1, 1, 1); local
58 Geometry geom = new Geometry("placeholder", box);
  /external/jmonkeyengine/engine/src/test/jme3test/audio/
TestAmbient.java 38 import com.jme3.scene.shape.Box;
70 // just a blue box to mark the spot
71 Box box1 = new Box(Vector3f.ZERO, .5f, .5f, .5f);
  /external/jmonkeyengine/engine/src/test/jme3test/awt/
TestSafeCanvas.java 7 import com.jme3.scene.shape.Box;
62 Box b = new Box(Vector3f.ZERO, 1, 1, 1);
63 Geometry geom = new Geometry("Box", b);
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
AbstractBoxParser.java 18 import com.coremedia.iso.boxes.Box;
31 * This BoxParser handles the basic stuff like reading size and extracting box type.
37 public abstract Box createBox(String type, byte[] userType, String parent);
40 * Parses the next size and type, creates a box instance and parses the box's content.
43 * @param parent the current box's parent (null if no parent)
44 * @return the box just parsed
47 public Box parseBox(ReadableByteChannel byteChannel, ContainerBox parent) throws IOException {
74 throw new RuntimeException("Only FileChannel inputs may use size == 0 (box reaches to the end of file)");
87 Box box = createBox(type, usertype, parent.getType()) local
    [all...]
IsoFile.java 20 import com.coremedia.iso.boxes.Box;
31 * The most upper container for ISO Boxes. It is a container box that is a file.
85 Box box = boxParser.parseBox(byteChannel, this); local
86 if (box != null) {
87 // System.err.println(box.getType());
88 boxes.add(box);
149 for (Box box : boxes) {
150 size += box.getSize()
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
Box.java 28 * Defines basic interaction possibilities for any ISO box. Each box has a parent box and a type.
30 public interface Box {
38 * The box's 4-cc type.
39 * @return the 4 character type of the box
44 * Writes the complete box - size | 4-cc | content - to the given <code>writableByteChannel</code>.
45 * @param writableByteChannel the box's sink
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/
Track.java 56 public Box getMediaHeaderBox();
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
PositionController.java 99 // In addition to the focused box (index == 0). We also keep information
133 // The bound of the stable region that the focused box can stay, see the
137 // Constrained frame is a rectangle that the focused box should fit into if
140 // (1) In page mode, if the focused box is constrained, scaling for the
141 // focused box is adjusted to fit into the constrained frame, instead of the
144 // (2) In page mode, if the focused box is constrained, the mPlatform's
150 // Whether the focused box is constrained.
161 // | | Box | | Box | | Box*| | Box | | Box |
    [all...]
  /external/jmonkeyengine/engine/src/test/jme3test/collision/
TestMousePick.java 48 import com.jme3.scene.shape.Box;
110 Box box = new Box(new Vector3f(x, y, z), 1, 1, 1); local
111 Geometry cube = new Geometry(name, box);
120 Box box = new Box(new Vector3f(0, -4, -5), 15, .2f, 15); local
121 Geometry floor = new Geometry("the Floor", box);
  /external/jmonkeyengine/engine/src/test/jme3test/effect/
TestSoftParticles.java 21 import com.jme3.scene.shape.Box;
48 Box b = new Box(Vector3f.ZERO, 10, 0.1f, 10);
49 Geometry geom = new Geometry("Box", b);
56 Box b2 = new Box(Vector3f.ZERO, 1, 1, 1);
57 Geometry geom2 = new Geometry("Box", b2);
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/
FragmentedMp4Builder.java 53 public Box createFtyp(Movie movie) {
113 protected List<Box> createMoofMdat(final Movie movie) {
114 List<Box> boxes = new LinkedList<Box>();
164 for (Box box : createMoofMdat(movie)) {
165 isoFile.addBox(box);
172 protected Box createMdat(final long startSample, final long endSample, final Track track, final int i) {
174 class Mdat implements Box {
238 protected Box createTfhd(long startSample, long endSample, Track track, int sequenceNumber)
    [all...]

Completed in 271 milliseconds

12 3 4 5 6