HomeSort by relevance Sort by last modified time
    Searched full:testpoint (Results 1 - 25 of 35) sorted by null

1 2

  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/box2d/
Box2DTest.java 159 Vector3 testPoint = new Vector3();
165 if (fixture.testPoint(testPoint.x, testPoint.y)) {
176 camera.unproject(testPoint.set(x, y, 0));
180 world.QueryAABB(callback, testPoint.x - 0.0001f, testPoint.y - 0.0001f, testPoint.x + 0.0001f, testPoint.y + 0.0001f);
194 def.target.set(testPoint.x, testPoint.y);
    [all...]
  /external/fonttools/Lib/fontTools/pens/
pointInsidePen.py 49 def __init__(self, glyphSet, testPoint, evenOdd=0):
51 self.setTestPoint(testPoint, evenOdd)
53 def setTestPoint(self, testPoint, evenOdd=0):
55 self.testPoint = testPoint
88 x, y = self.testPoint
108 x, y = self.testPoint
173 x, y = self.testPoint
  /external/libgdx/gdx/src/com/badlogic/gdx/math/
Frustum.java 85 PlaneSide result = planes[i].testPoint(point);
99 PlaneSide result = planes[i].testPoint(x, y, z);
161 if (planes[i].testPoint(bounds.getCorner000(tmpV)) != PlaneSide.Back) continue;
162 if (planes[i].testPoint(bounds.getCorner001(tmpV)) != PlaneSide.Back) continue;
163 if (planes[i].testPoint(bounds.getCorner010(tmpV)) != PlaneSide.Back) continue;
164 if (planes[i].testPoint(bounds.getCorner011(tmpV)) != PlaneSide.Back) continue;
165 if (planes[i].testPoint(bounds.getCorner100(tmpV)) != PlaneSide.Back) continue;
166 if (planes[i].testPoint(bounds.getCorner101(tmpV)) != PlaneSide.Back) continue;
167 if (planes[i].testPoint(bounds.getCorner110(tmpV)) != PlaneSide.Back) continue;
168 if (planes[i].testPoint(bounds.getCorner111(tmpV)) != PlaneSide.Back) continue;
    [all...]
Plane.java 108 public PlaneSide testPoint (Vector3 point) {
126 public PlaneSide testPoint (float x, float y, float z) {
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
Box2DTest.java 322 Vector3 testPoint = new Vector3();
332 if (fixture.testPoint(testPoint.x, testPoint.y)) {
343 testPoint.set(x, y, 0);
344 camera.unproject(testPoint);
349 world.QueryAABB(callback, testPoint.x - 0.1f, testPoint.y - 0.1f, testPoint.x + 0.1f, testPoint.y + 0.1f);
    [all...]
  /external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Collision/Shapes/
b2EdgeShape.h 41 /// @see b2Shape::TestPoint
42 bool TestPoint(const b2Transform& transform, const b2Vec2& p) const;
b2ChainShape.h 71 /// @see b2Shape::TestPoint
72 bool TestPoint(const b2Transform& transform, const b2Vec2& p) const;
b2PolygonShape.h 58 /// @see b2Shape::TestPoint
59 bool TestPoint(const b2Transform& transform, const b2Vec2& p) const;
b2CircleShape.h 37 bool TestPoint(const b2Transform& transform, const b2Vec2& p) const;
b2CircleShape.cpp 36 bool b2CircleShape::TestPoint(const b2Transform& transform, const b2Vec2& p) const
b2EdgeShape.cpp 44 bool b2EdgeShape::TestPoint(const b2Transform& xf, const b2Vec2& p) const
b2Shape.h 70 virtual bool TestPoint(const b2Transform& xf, const b2Vec2& p) const = 0;
b2ChainShape.cpp 142 bool b2ChainShape::TestPoint(const b2Transform& xf, const b2Vec2& p) const
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/com/badlogic/gdx/physics/box2d/
Fixture.java 115 public boolean testPoint (Vector2 p) {
117 return fixture.testPoint(tmp);
123 public boolean testPoint (float x, float y) {
125 return fixture.testPoint(tmp);
  /external/opencv3/modules/core/misc/java/test/
PointTest.java 51 public void testPoint() {
  /external/libgdx/extensions/gdx-box2d/gdx-box2d/src/com/badlogic/gdx/physics/box2d/
Fixture.java 193 public boolean testPoint (Vector2 p) {
200 public boolean testPoint (float x, float y) {
206 return fixture->TestPoint( b2Vec2( x, y ) );
ChainShape.java 172 // /// @see b2Shape::TestPoint
173 // bool TestPoint(const b2Transform& transform, const b2Vec2& p) const;
Shape.java 97 // virtual bool TestPoint(const b2Transform& xf, const b2Vec2& p) const = 0;
  /frameworks/base/libs/hwui/
SpotShadow.h 56 static bool testPointInsidePolygon(const Vector2 testPoint, const Vector2* poly, int len);
SpotShadow.cpp 280 * @param testPoint the point to test
282 * @return true if the testPoint is inside the poly.
284 bool SpotShadow::testPointInsidePolygon(const Vector2 testPoint,
287 float testx = testPoint.x;
288 float testy = testPoint.y;
    [all...]
  /external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Dynamics/
b2Fixture.h 157 bool TestPoint(const b2Vec2& p) const;
324 inline bool b2Fixture::TestPoint(const b2Vec2& p) const
326 return m_shape->TestPoint(m_body->GetTransform(), p);
  /external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/
com.badlogic.gdx.physics.box2d.Fixture.cpp 108 return fixture->TestPoint( b2Vec2( x, y ) );
  /system/extras/perfprofd/tests/
perfprofd_test.cc 47 // at the start of each testpoint (into which new files can be written),
48 // then delete at end of testpoint.
218 static void readEncodedProfile(const char *testpoint,
277 const char *testpoint,
288 std::cerr << testpoint << ": expected result not found\n"; local
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/dynamics/
Fixture.java 230 public boolean testPoint(final Vec2 p) {
231 return m_shape.testPoint(m_body.m_xf, p);
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/collision/shapes/
Shape.java 88 public abstract boolean testPoint(final Transform xf, final Vec2 p);

Completed in 354 milliseconds

1 2