HomeSort by relevance Sort by last modified time
    Searched refs:ShapeType (Results 1 - 25 of 58) sorted by null

1 2 3

  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/collision/shapes/
ShapeType.java 30 public enum ShapeType {
Shape.java 39 public final ShapeType m_type;
42 public Shape(ShapeType type) {
51 public ShapeType getType() {
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
ShapeRendererAlphaTest.java 22 import com.badlogic.gdx.graphics.glutils.ShapeRenderer.ShapeType;
41 renderer.begin(ShapeType.Line);
46 renderer.begin(ShapeType.Filled);
51 renderer.begin(ShapeType.Line);
56 renderer.begin(ShapeType.Filled);
SpriteBatchOriginScaleTest.java 25 import com.badlogic.gdx.graphics.glutils.ShapeRenderer.ShapeType;
48 renderer.begin(ShapeType.Line);
BitmapFontMetricsTest.java 27 import com.badlogic.gdx.graphics.glutils.ShapeRenderer.ShapeType;
86 renderer.begin(ShapeType.Filled);
92 renderer.begin(ShapeType.Line);
107 renderer.begin(ShapeType.Line);
DelaunayTriangulatorTest.java 24 import com.badlogic.gdx.graphics.glutils.ShapeRenderer.ShapeType;
88 renderer.begin(ShapeType.Filled);
94 renderer.begin(ShapeType.Line);
InverseKinematicsTest.java 23 import com.badlogic.gdx.graphics.glutils.ShapeRenderer.ShapeType;
87 renderer.begin(ShapeType.Line);
94 renderer.begin(ShapeType.Point);
PolygonSpriteTest.java 30 import com.badlogic.gdx.graphics.glutils.ShapeRenderer.ShapeType;
97 renderer.begin(ShapeType.Line);
106 renderer.begin(ShapeType.Filled);
MultitouchTest.java 25 import com.badlogic.gdx.graphics.glutils.ShapeRenderer.ShapeType;
42 renderer.begin(ShapeType.Filled);
TextureAtlasTest.java 30 import com.badlogic.gdx.graphics.glutils.ShapeRenderer.ShapeType;
90 renderer.begin(ShapeType.Line);
  /external/icu/icu4c/source/layout/
ArabicShaping.h 57 typedef le_int32 ShapeType;
68 static ShapeType getShapeType(LEUnicode c);
73 static const ShapeType shapeTypes[];
ArabicShaping.cpp 17 const ArabicShaping::ShapeType ArabicShaping::shapeTypes[] =
34 ArabicShaping::ShapeType ArabicShaping::getShapeType(LEUnicode c)
143 ShapeType rightType = ST_NOSHAPE_NONE, leftType = ST_NOSHAPE_NONE;
177 ShapeType t = getShapeType(c);
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/dynamics/contacts/
CircleContact.java 28 import org.jbox2d.collision.shapes.ShapeType;
41 assert (m_fixtureA.getType() == ShapeType.CIRCLE);
42 assert (m_fixtureB.getType() == ShapeType.CIRCLE);
PolygonAndCircleContact.java 29 import org.jbox2d.collision.shapes.ShapeType;
42 assert (m_fixtureA.getType() == ShapeType.POLYGON);
43 assert (m_fixtureB.getType() == ShapeType.CIRCLE);
PolygonContact.java 28 import org.jbox2d.collision.shapes.ShapeType;
41 assert (m_fixtureA.getType() == ShapeType.POLYGON);
42 assert (m_fixtureB.getType() == ShapeType.POLYGON);
ChainAndCircleContact.java 30 import org.jbox2d.collision.shapes.ShapeType;
44 assert (m_fixtureA.getType() == ShapeType.CHAIN);
45 assert (m_fixtureB.getType() == ShapeType.CIRCLE);
ChainAndPolygonContact.java 30 import org.jbox2d.collision.shapes.ShapeType;
44 assert (m_fixtureA.getType() == ShapeType.CHAIN);
45 assert (m_fixtureB.getType() == ShapeType.POLYGON);
EdgeAndCircleContact.java 29 import org.jbox2d.collision.shapes.ShapeType;
43 assert (m_fixtureA.getType() == ShapeType.EDGE);
44 assert (m_fixtureB.getType() == ShapeType.CIRCLE);
EdgeAndPolygonContact.java 29 import org.jbox2d.collision.shapes.ShapeType;
43 assert (m_fixtureA.getType() == ShapeType.EDGE);
44 assert (m_fixtureB.getType() == ShapeType.POLYGON);
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/com/badlogic/gdx/physics/box2d/
Fixture.java 19 import org.jbox2d.collision.shapes.ShapeType;
48 ShapeType type = fixture.getType();
49 if (type == ShapeType.CIRCLE) return Type.Circle;
50 if (type == ShapeType.EDGE) return Type.Edge;
51 if (type == ShapeType.POLYGON) return Type.Polygon;
52 if (type == ShapeType.CHAIN) return Type.Chain;
60 ShapeType type = shape2.getType();
61 if (type == ShapeType.CHAIN) shape = new ChainShape((org.jbox2d.collision.shapes.ChainShape)shape2);
62 if (type == ShapeType.CIRCLE) shape = new CircleShape((org.jbox2d.collision.shapes.CircleShape)shape2);
63 if (type == ShapeType.EDGE) shape = new EdgeShape((org.jbox2d.collision.shapes.EdgeShape)shape2)
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/glutils/
ShapeRenderer.java 42 * shapeRenderer.begin(ShapeType.Line);
49 * shapeRenderer.begin(ShapeType.Filled);
62 * shapeRenderer.begin(ShapeType.Line);
79 /** Shape types to be used with {@link #begin(ShapeType)}.
81 public enum ShapeType {
86 ShapeType (int glType) {
102 private ShapeType shapeType;
199 begin(ShapeType.Line);
205 public void begin (ShapeType type) {
    [all...]
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/gwt/
GwtInputTest.java 23 import com.badlogic.gdx.graphics.glutils.ShapeRenderer.ShapeType;
38 renderer.begin(ShapeType.Filled);
  /frameworks/base/libs/hwui/
PathCache.cpp 59 : type(ShapeType::None)
70 PathDescription::PathDescription(ShapeType type, const SkPaint* paint)
103 case ShapeType::None:
105 case ShapeType::Rect:
107 case ShapeType::RoundRect:
109 case ShapeType::Circle:
111 case ShapeType::Oval:
113 case ShapeType::Arc:
115 case ShapeType::Path:
369 if (key.type == ShapeType::Path && key.shape.path.mGenerationID == generationID)
    [all...]
  /external/skia/gm/
dstreadshuffle.cpp 27 enum ShapeType {
47 ShapeType type) {
150 ShapeType shapeType = static_cast<ShapeType>(i);
169 this->drawShape(canvas, &p, shapeType);
  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/texturepacker/
TexturePackerTest.java 27 import com.badlogic.gdx.graphics.glutils.ShapeRenderer.ShapeType;
85 renderer.begin(ShapeType.Filled);
93 renderer.begin(ShapeType.Line);

Completed in 475 milliseconds

1 2 3