/external/jmonkeyengine/engine/src/test/jme3test/bullet/ |
TestAttachDriver.java | 52 import com.jme3.scene.shape.Box; 53 import com.jme3.scene.shape.Cylinder; 130 //create a compound shape and attach the BoxCollisionShape for the car body at 0,1,0
|
TestBoneRagdoll.java | 60 import com.jme3.scene.shape.Sphere; 61 import com.jme3.scene.shape.Sphere.TextureMode;
|
TestWalkingChar.java | 67 import com.jme3.scene.shape.Box; 68 import com.jme3.scene.shape.Sphere; 69 import com.jme3.scene.shape.Sphere.TextureMode;
|
/frameworks/base/graphics/java/android/graphics/drawable/ |
ShapeDrawable.java | 20 import android.graphics.drawable.shapes.Shape; 32 * A ShapeDrawable takes a {@link android.graphics.drawable.shapes.Shape} 33 * object and manages its presence on the screen. If no Shape is given, then 37 * <p>This object can be defined in an XML file with the <code><shape></code> element.</p> 42 * <a href="{@docRoot}guide/topics/graphics/2d-graphics.html#shape-drawable"> 45 * <a href="{@docRoot}guide/topics/resources/drawable-resource.html#Shape">Drawable Resources</a> 68 * Creates a ShapeDrawable with a specified Shape. 70 * @param s the Shape that this ShapeDrawable should be 72 public ShapeDrawable(Shape s) { 83 * Returns the Shape of this ShapeDrawable [all...] |
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/ |
PhysicsSpace.java | 691 public List<PhysicsSweepTestResult> sweepTest(CollisionShape shape, Transform start, Transform end) { 693 if (!(shape.getCShape() instanceof ConvexShape)) { 694 Logger.getLogger(PhysicsSpace.class.getName()).log(Level.WARNING, "Trying to sweep test with incompatible mesh shape!"); 697 dynamicsWorld.convexSweepTest((ConvexShape) shape.getCShape(), Converter.convert(start, sweepTrans1), Converter.convert(end, sweepTrans2), new InternalSweepListener(results)); 707 public List<PhysicsSweepTestResult> sweepTest(CollisionShape shape, Transform start, Transform end, List<PhysicsSweepTestResult> results) { 709 if (!(shape.getCShape() instanceof ConvexShape)) { 710 Logger.getLogger(PhysicsSpace.class.getName()).log(Level.WARNING, "Trying to sweep test with incompatible mesh shape!"); 713 dynamicsWorld.convexSweepTest((ConvexShape) shape.getCShape(), Converter.convert(start, sweepTrans1), Converter.convert(end, sweepTrans2), new InternalSweepListener(results)); [all...] |
/external/chromium_org/third_party/WebKit/Source/core/css/ |
CSSParser-in.cpp | [all...] |
CSSGradientValue.cpp | 828 // The only ambiguous case that needs an explicit shape to be provided 1010 GradientShape shape = Ellipse; local [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/geometry/ |
Region.cpp | 31 // A region class based on the paper "Scanline Coherent Shape Algebra" 53 for (Shape::SpanIterator span = m_shape.spansBegin(), end = m_shape.spansEnd(); span != end && span + 1 != end; ++span) { 57 for (Shape::SegmentIterator segment = m_shape.segmentsBegin(span), end = m_shape.segmentsEnd(span); segment != end && segment + 1 != end; segment += 2) { 73 return Shape::compareShapes<Shape::CompareContainsOperation>(m_shape, region.m_shape); 81 for (Shape::SpanIterator span = m_shape.spansBegin(), end = m_shape.spansEnd(); span != end && span + 1 != end; ++span) { 90 for (Shape::SegmentIterator segment = m_shape.segmentsBegin(span), end = m_shape.segmentsEnd(span); segment != end && segment + 1 != end; segment += 2) { 109 return Shape::compareShapes<Shape::CompareIntersectsOperation>(m_shape, region.m_shape); 127 bool Region::Shape::compareShapes(const Shape& aShape, const Shape& bShape [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/ |
ir.py | 140 shape = tuple( [ type(_node).__name__ for _node in node ] ) 141 if not tank[type(node)].has_key(shape): 142 tank[type(node)][shape] = [] 143 tank[type(node)][shape].append( node ) 152 for shape in tank[key].keys(): 153 print " ", shape 195 shape = +( str, +ConstExpr ) [all...] |
/external/opencv/cv/src/ |
cvmorph.cpp | 176 "structuring element should be valid matrix if CUSTOM element shape is specified" ); 406 CV_ERROR( CV_StsBadArg, "Unknown/unsupported element shape" ); 728 int shape, int *values ) 738 if( !values && shape == CV_SHAPE_CUSTOM ) [all...] |
/external/jmonkeyengine/engine/src/test/jme3test/games/ |
CubeField.java | 50 import com.jme3.scene.shape.Box; 51 import com.jme3.scene.shape.Dome;
|
/external/jmonkeyengine/engine/src/test/jme3test/terrain/ |
TerrainTestCollision.java | 57 import com.jme3.scene.shape.Box; 58 import com.jme3.scene.shape.Sphere;
|
/developers/build/lib/ |
assetstudio.jar | |
/external/chromium_org/remoting/client/plugin/ |
chromoting_instance.cc | 385 void ChromotingInstance::SetDesktopShape(const webrtc::DesktopRegion& shape) { 386 if (desktop_shape_ && shape.Equals(*desktop_shape_)) 389 desktop_shape_.reset(new webrtc::DesktopRegion(shape)); 392 for (webrtc::DesktopRegion::Iterator i(shape); !i.IsAtEnd(); i.Advance()) { 488 // TODO(sergeyu): Move cursor shape code to a separate class. 514 LOG(WARNING) << "Unable to set cursor shape - native image format is not" 536 // the hotspot as close to the center of the new cursor shape as possible. [all...] |
chromoting_instance.h | 140 void SetDesktopShape(const webrtc::DesktopRegion& shape); 245 // Contains the most-recently-reported desktop shape, if any.
|
/external/chromium_org/third_party/skia/include/pdf/ |
SkPDFDevice.h | 288 SkPath* shape);
|
/external/chromium_org/ui/views/widget/desktop_aura/ |
desktop_root_window_host_x11.h | 8 #include <X11/extensions/shape.h> 270 // Copy of custom window shape specified via SetShape(), if any.
|
/external/chromium_org/ui/views/widget/ |
native_widget_aura.h | 94 virtual void SetShape(gfx::NativeRegion shape) OVERRIDE;
|
/external/harfbuzz_ng/contrib/python/lib/ |
harfbuzz.pyx | 105 cdef extern from "hb-shape.h" : 200 def shape(self, buffer aBuffer, features = {}) : member in class:ft
|
/external/harfbuzz_ng/contrib/python/scripts/ |
hbtestfont | 49 ft.shape(buffer, features = features)
|
/external/icu4c/layout/ |
ArabicLayoutEngine.cpp | 98 ArabicShaping::shape(chars, offset, count, max, rightToLeft, glyphStorage);
|
/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/control/ |
KinematicRagdollControl.java | 73 * <li>The shape is HullCollision shape based on the vertices associated with each bone and based on a tweakable weight threshold (see setWeightThreshold)</li> 74 * <li>If you don't want each bone to be a collision shape, you can specify what bone to use by using the addBoneName method<br> 75 * By using this method, bone that are not used to create a shape, are "merged" to their parent to create the collision shape. 204 //if boneList is empty, this means that every bone in the ragdoll has a collision shape, 209 //boneList is not empty, this means some bones of the skeleton might not be associated with a collision shape. 380 //creating the collision shape 381 HullCollisionShape shape = null; local 383 //build a shape for the bone, using the vertices that are most influenced by this bon [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/ |
Curve.java | 32 package com.jme3.scene.shape;
|
Dome.java | 33 package com.jme3.scene.shape;
|
PQTorus.java | 34 package com.jme3.scene.shape;
|