Searched refs:secondPoint (Results 1 - 3 of 3) sorted by relevance

/external/webkit/Source/WebCore/css/
H A DCSSGradientValue.cpp475 static void endPointsFromAngle(float angleDeg, const IntSize& size, FloatPoint& firstPoint, FloatPoint& secondPoint) argument
483 secondPoint.set(size.width(), 0);
489 secondPoint.set(0, 0);
495 secondPoint.set(0, 0);
524 secondPoint.set(halfWidth + endX, size.height() - (halfHeight + endY));
526 firstPoint.set(size.width() - secondPoint.x(), size.height() - secondPoint.y());
536 FloatPoint secondPoint; local
539 endPointsFromAngle(angle, size, firstPoint, secondPoint);
544 secondPoint
734 FloatPoint secondPoint = computeEndPoint(m_secondX.get(), m_secondY.get(), renderer->style(), rootStyle, size); local
[all...]
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
H A DLODGeomap.java879 private Vector3f getNormal(Vector3f firstPoint, Vector3f rootPoint, Vector3f secondPoint, Vector3f scale, Vector3f store) { argument
886 float x2 = secondPoint.x - rootPoint.x;
887 float y2 = secondPoint.y - rootPoint.y;
888 float z2 = secondPoint.z - rootPoint.z;
902 /*store.set( firstPoint.subtractLocal(rootPoint).multLocal(scale).crossLocal(secondPoint.subtractLocal(rootPoint).multLocal(scale)).normalizeLocal() );
H A DTerrainPatch.java570 private Vector3f calculateNormal(Vector3f firstPoint, Vector3f rootPoint, Vector3f secondPoint) { argument
573 .crossLocal(secondPoint.subtract(rootPoint)).normalizeLocal();

Completed in 119 milliseconds