Searched defs:startPoint (Results 1 - 25 of 26) sorted by relevance

12

/external/replicaisland/src/com/replica/replicaisland/
H A DSolidSurfaceComponent.java75 public void addSurface(Vector2 startPoint, Vector2 endPoint, Vector2 normal) { argument
76 mStartPoints.add(startPoint);
H A DCollisionSystem.java98 * @param startPoint The starting point for the ray in world units.
109 public boolean castRay(Vector2 startPoint, Vector2 endPoint, Vector2 movementDirection, argument
117 executeRay(startPoint, endPoint, hitPoint, hitNormal, mTileSegmentTester) != -1) {
126 if (testSegmentAgainstList(mTemporarySegments, startPoint, endPoint, tempHitPoint,
131 final float firstCollisionDistance = startPoint.distance2(hitPoint);
132 if (firstCollisionDistance > startPoint.distance2(tempHitPoint)) {
235 public void addTemporarySurface(Vector2 startPoint, Vector2 endPoint, Vector2 normal, argument
239 newSegment.set(startPoint, endPoint, normal);
270 * @param startPoint The starting point for the ray, in world space.
277 protected int executeStraigtRay(final Vector2 startPoint, fina argument
330 executeRay(Vector2 startPoint, Vector2 endPoint, Vector2 hitPoint, Vector2 hitNormal, TileVisitor visitor) argument
431 testSegmentAgainstList(FixedSizeArray<LineSegment> segments, Vector2 startPoint, Vector2 endPoint, Vector2 hitPoint, Vector2 hitNormal, Vector2 movementDirection, GameObject excludeObject) argument
600 visit(CollisionTile tile, Vector2 startPoint, Vector2 endPoint, Vector2 hitPoint, Vector2 hitNormal, int tileX, int tileY) argument
647 visit(CollisionTile tile, Vector2 startPoint, Vector2 endPoint, Vector2 hitPoint, Vector2 hitNormal, int tileX, int tileY) argument
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/
H A DDifferentiableMultivariateRealOptimizer.java100 * @param startPoint the start point for optimization
109 double[] startPoint)
107 optimize(DifferentiableMultivariateRealFunction f, GoalType goalType, double[] startPoint) argument
H A DDifferentiableMultivariateVectorialOptimizer.java102 * @param startPoint the start point for optimization
111 double[] startPoint)
109 optimize(DifferentiableMultivariateVectorialFunction f, double[] target, double[] weights, double[] startPoint) argument
H A DMultiStartMultivariateRealOptimizer.java164 double[] startPoint)
178 (i == 0) ? startPoint : generator.nextVector());
162 optimize(final MultivariateRealFunction f, final GoalType goalType, double[] startPoint) argument
H A DMultivariateRealOptimizer.java89 * @param startPoint the start point for optimization
98 double[] startPoint)
96 optimize(MultivariateRealFunction f, GoalType goalType, double[] startPoint) argument
H A DMultiStartDifferentiableMultivariateRealOptimizer.java174 double[] startPoint)
189 (i == 0) ? startPoint : generator.nextVector());
172 optimize(final DifferentiableMultivariateRealFunction f, final GoalType goalType, double[] startPoint) argument
H A DMultiStartDifferentiableMultivariateVectorialOptimizer.java178 final double[] startPoint)
193 (i == 0) ? startPoint : generator.nextVector());
176 optimize(final DifferentiableMultivariateVectorialFunction f, final double[] target, final double[] weights, final double[] startPoint) argument
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/direct/
H A DDirectSearchOptimizer.java259 final double[] startPoint)
263 (startConfiguration.length != startPoint.length)) {
266 final double[] unit = new double[startPoint.length];
286 buildSimplex(startPoint);
350 * @param startPoint the start point for optimization
354 private void buildSimplex(final double[] startPoint) argument
357 final int n = startPoint.length;
365 simplex[0] = new RealPointValuePair(startPoint, Double.NaN);
372 vertexI[k] = startPoint[k] + confI[k];
257 optimize(final MultivariateRealFunction function, final GoalType goalType, final double[] startPoint) argument
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/general/
H A DAbstractScalarDifferentiableOptimizer.java179 final double[] startPoint)
191 point = startPoint.clone();
177 optimize(final DifferentiableMultivariateRealFunction f, final GoalType goalType, final double[] startPoint) argument
H A DAbstractLeastSquaresOptimizer.java328 final double[] startPoint)
346 this.point = startPoint.clone();
326 optimize(final DifferentiableMultivariateVectorialFunction f, final double[] target, final double[] weights, final double[] startPoint) argument
/external/skia/src/utils/win/
H A DSkDWriteGeometrySink.cpp68 void STDMETHODCALLTYPE SkDWriteGeometrySink::BeginFigure(D2D1_POINT_2F startPoint, D2D1_FIGURE_BEGIN figureBegin) { argument
69 fPath->moveTo(startPoint.x, startPoint.y);
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/impl/
H A DDumbTextComponent.java81 private transient Point startPoint = new Point(); field in class:DumbTextComponent
573 offset2Point(selection.getStart(), true, startPoint);
576 caretPoint.setLocation(startPoint);
578 if (startPoint.y == endPoint.y) {
579 paintRect(g, startPoint.x, startPoint.y,
580 Math.max(1,endPoint.x-startPoint.x), lineHeight);
582 paintRect(g, startPoint.x, startPoint.y,
583 (mySize.width-xInset)-startPoint
[all...]
/external/skia/src/gpu/ops/
H A DGrOvalOpFactory.cpp692 SkPoint startPoint, stopPoint; local
693 startPoint.fY = SkScalarSinCos(arcParams->fStartAngleRadians, &startPoint.fX);
705 SkVector norm0 = {startPoint.fY, -startPoint.fX};
740 startPoint.scale(radius);
742 SkVector norm = {startPoint.fY - stopPoint.fY, stopPoint.fX - startPoint.fX};
747 SkScalar d = -norm.dot(startPoint) + 0.5f;
/external/opencv/cvaux/src/
H A Dcvepilines.cpp667 int icvGetAngleLine( CvPoint2D64d startPoint, CvSize imageSize,CvPoint2D64d *point1,CvPoint2D64d *point2) argument
690 if( startPoint.x < 0 )
692 if( startPoint.y < 0)
697 else if( startPoint.y > imageSize.height-1 )
708 else if ( startPoint.x > imageSize.width-1 )
710 if( startPoint.y < 0 )
715 else if ( startPoint.y > imageSize.height-1 )
728 if( startPoint.y < 0 )
730 if( startPoint.x < imageSize.width/2 )
741 else if( startPoint
[all...]
/external/valgrind/coregrind/m_aspacemgr/
H A Daspacemgr-linux.c1874 Addr startPoint = forClient ? aspacem_vStart - 1 : aspacem_maxAddr - 1; local
1876 Addr startPoint = forClient ? aspacem_cStart : aspacem_vStart; local
1964 i = find_nsegment_idx(startPoint);
/external/skia/src/xps/
H A DSkXPSDevice.cpp834 XPS_POINT startPoint; local
837 startPoint = xps_point(info.fPoint[0]);
843 startPoint = xps_point(info.fPoint[0], localMatrix);
860 &startPoint,
1105 XPS_POINT startPoint = xps_point(points[0]); variable
1108 HRM(this->fXpsFactory->CreateGeometryFigure(&startPoint, xpsQuad),
1322 XPS_POINT startPoint = xps_point(points[0]); local
1324 HRM(this->fXpsFactory->CreateGeometryFigure(&startPoint,
/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/oned/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 1255 milliseconds

12