HomeSort by relevance Sort by last modified time
    Searched refs:shape (Results 176 - 200 of 386) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/jmonkeyengine/engine/src/test/jme3test/light/
TestShadow.java 45 import com.jme3.scene.shape.Box;
TestTangentGenBadUV.java 44 import com.jme3.scene.shape.Sphere;
TestPssmShadow.java 46 import com.jme3.scene.shape.Box;
47 import com.jme3.scene.shape.Sphere;
  /external/jmonkeyengine/engine/src/test/jme3test/material/
TestBumpModel.java 45 import com.jme3.scene.shape.Sphere;
  /external/jmonkeyengine/engine/src/test/jme3test/model/
TestMonkeyHead.java 43 import com.jme3.scene.shape.Sphere;
TestOgreLoading.java 42 import com.jme3.scene.shape.Sphere;
  /external/jmonkeyengine/engine/src/test/jme3test/model/anim/
TestAnimationFactory.java 13 import com.jme3.scene.shape.Box;
TestOgreAnim.java 47 import com.jme3.scene.shape.Box;
TestSpatialAnim.java 13 import com.jme3.scene.shape.Box;
  /external/jmonkeyengine/engine/src/test/jme3test/model/shape/
TestCustomMesh.java 33 package jme3test.model.shape;
  /external/jmonkeyengine/engine/src/test/jme3test/post/
TestTransparentSSAO.java 14 import com.jme3.scene.shape.Quad;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/assetstudio/
ConfigureAssetSetPage.java 26 import com.android.assetstudiolib.GraphicGenerator.Shape;
329 mShapeLabel.setText("Shape");
523 // Shape=NONE does not apply for notification icons; it's needed for API < 9
524 if (mValues.shape == Shape.NONE && mValues.type == AssetType.NOTIFICATION) {
525 mValues.shape = Shape.SQUARE;
528 setShape(mValues.shape);
712 mValues.shape = GraphicGenerator.Shape.SQUARE
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
turtle.py 119 'RawTurtle', 'Turtle', 'RawPen', 'Pen', 'Shape', 'Vec2D']
135 'setundobuffer', 'setx', 'sety', 'shape', 'shapesize', 'showturtle',
161 "shape": "classic",
825 class Shape(object):
845 raise TurtleGraphicsError("There is no shape type %s" % type_)
849 """Add component to a shape of type compound.
860 >>> s = Shape("compound")
865 raise TurtleGraphicsError("Cannot add component to %s Shape"
2657 def shape(self, name=None): function
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
turtle.py 119 'RawTurtle', 'Turtle', 'RawPen', 'Pen', 'Shape', 'Vec2D']
135 'setundobuffer', 'setx', 'sety', 'shape', 'shapesize', 'showturtle',
161 "shape": "classic",
825 class Shape(object):
845 raise TurtleGraphicsError("There is no shape type %s" % type_)
849 """Add component to a shape of type compound.
860 >>> s = Shape("compound")
865 raise TurtleGraphicsError("Cannot add component to %s Shape"
2657 def shape(self, name=None): function
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderThemeChromiumMac.mm 796 CGMutablePathRef shape = CGPathCreateMutable();
798 // To draw the caps lock indicator, draw the shape into a small
802 // Create a rounted square shape.
803 CGPathMoveToPoint(shape, NULL, 16.5, 4.5);
804 CGPathAddArc(shape, NULL, 12.5, 12.5, 4, 0, M_PI_2, false);
805 CGPathAddArc(shape, NULL, 4.5, 12.5, 4, M_PI_2, M_PI, false);
806 CGPathAddArc(shape, NULL, 4.5, 4.5, 4, M_PI, 3*M_PI/2, false);
807 CGPathAddArc(shape, NULL, 12.5, 4.5, 4, 3*M_PI/2, 0, false);
811 CGPathMoveToPoint(shape, NULL, 8.5, 2); // Tip point.
812 CGPathAddLineToPoint(shape, NULL, 4, 7)
    [all...]
  /development/samples/CubeLiveWallpaper/src/com/example/android/livecubes/cube2/
CubeWallpaper2.java 30 * This animated wallpaper draws a rotating wireframe shape. It is similar to
107 String shape = prefs.getString("cube2_shape", "cube"); local
110 readModel(shape);
116 // get the resource identifiers for the arrays for the selected shape
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
PeriodicWave.cpp 223 void PeriodicWave::generateBasicWaveform(int shape)
245 // Calculate Fourier coefficients depending on the shape.
247 switch (shape) {
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/
PhysicsCollisionObject.java 89 * not be in the physics space when adding a new collision shape as it is rebuilt
107 * Returns the collision group for this collision shape
178 * Creates a visual debug shape of the current collision shape of this physics object<br/>
180 * @param manager AssetManager to load the default wireframe material for the debug shape
202 * creates a debug shape for this CollisionObject
226 * Creates a visual debug shape of the current collision shape of this physics object<br/>
228 * @param material Material to use for the debug shape
269 * Removes the debug shape
312 CollisionShape shape = (CollisionShape) capsule.readSavable("collisionShape", null); local
    [all...]
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/objects/
PhysicsCharacter.java 66 * @param shape The CollisionShape (no Mesh or CompoundCollisionShapes)
69 public PhysicsCharacter(CollisionShape shape, float stepHeight) {
70 this.collisionShape = shape;
71 // if (shape instanceof MeshCollisionShape || shape instanceof CompoundCollisionShape) {
  /external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/control/
CharacterControl.java 39 public CharacterControl(CollisionShape shape, float stepHeight) {
40 super(shape, stepHeight);
  /external/jmonkeyengine/engine/src/core/com/jme3/cinematic/
MotionPath.java 45 import com.jme3.scene.shape.Box;
46 import com.jme3.scene.shape.Curve;
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/
PhysicsCollisionObject.java 86 * not be in the physics space when adding a new collision shape as it is rebuilt
104 * Returns the collision group for this collision shape
158 * Creates a visual debug shape of the current collision shape of this physics object<br/>
160 * @param manager AssetManager to load the default wireframe material for the debug shape
182 * creates a debug shape for this CollisionObject
206 * Creates a visual debug shape of the current collision shape of this physics object<br/>
208 * @param material Material to use for the debug shape
249 * Removes the debug shape
284 CollisionShape shape = (CollisionShape) capsule.readSavable("collisionShape", null); local
    [all...]
  /external/jmonkeyengine/engine/src/test/jme3test/bullet/
TestRagDoll.java 91 CapsuleCollisionShape shape = new CapsuleCollisionShape(width, height, axis); local
93 RigidBodyControl rigidBodyControl = new RigidBodyControl(shape, 1);
  /external/jmonkeyengine/engine/src/test/jme3test/helloworld/
HelloPicking.java 52 import com.jme3.scene.shape.Box;
53 import com.jme3.scene.shape.Sphere;
  /libcore/luni/src/main/java/java/awt/font/
NumericShaper.java 665 public void shape(char[] text, int start, int count, int context) { method in class:NumericShaper
681 public void shape(char[] text, int start, int count) { method in class:NumericShaper
    [all...]

Completed in 991 milliseconds

1 2 3 4 5 6 78 91011>>