Home
last modified time | relevance | path

Searched refs:mDimx (Results 1 – 7 of 7) sorted by relevance

/frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/loaders/
DLoaderDicom.java317 v.mDimx = (Short) data.get(0x28, 0x10).mValue; in buildVolume()
377 listener.progress(0, v.mDimx); in buildRSVolume()
420 if (v.mDimx == -1) { in buildRSVolume()
422 v.mDimx = dimX; in buildRSVolume()
428 b.setX(v.mDimx).setY(v.mDimy); in buildRSVolume()
439 b.setX(v.mDimx).setY(v.mDimy); in buildRSVolume()
444 listener.progress(z, v.mDimx); in buildRSVolume()
446 int size = v.mDimy * v.mDimx; in buildRSVolume()
551 short mDimx = (Short) data.get(0x28, 0x10).mValue; in buildRSVolume2() local
566 if (v.mDimx == -1) { in buildRSVolume2()
[all …]
DLoaderRaw.java55 v.mDimx = Integer.parseInt(dim[0]); in buildRSVolume()
115 0, v.mDimy * v.mDimx * 2); in buildRSVolume()
116 short[] slice = new short[v.mDimy * v.mDimx]; in buildRSVolume()
123 b.setX(v.mDimx).setY(v.mDimy); in buildRSVolume()
132 int size = v.mDimy * v.mDimx; in buildRSVolume()
DMandelbulb.java58 v.mDimx = v.mDimy = v.mDimz = SIZE; in buildRSVolume()
65 b.setX(v.mDimx).setY(v.mDimy); in buildRSVolume()
68 b.setX(v.mDimx).setY(v.mDimy).setZ(v.mDimz); in buildRSVolume()
DDroid.java65 v.mDimx = v.mDimy = v.mDimz = SIZE; in buildRSVolume()
73 b.setX(v.mDimx).setY(v.mDimy); in buildRSVolume()
76 b.setX(v.mDimx).setY(v.mDimy).setZ(v.mDimz); in buildRSVolume()
/frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/engine/
DCube.java32 float minx = delta + trim[0] * (v.mDimx - delta); in Cube()
35 float maxx = v.mDimx - delta - trim[3] * (v.mDimx - delta); in Cube()
DVolume.java34 public int mDimx = -1; field in Volume
40 String ret = "Volume[" + mDimx + "," + mDimy + "," + mDimz + "]"; in toString()
DRsBrickedBitMask.java50 mDimX = mVolume.mDimx; in RsBrickedBitMask()