Searched refs:firstPoint (Results 1 - 4 of 4) 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
482 firstPoint.set(0, 0);
488 firstPoint.set(0, size.height());
494 firstPoint.set(size.width(), 0);
526 firstPoint.set(size.width() - secondPoint.x(), size.height() - secondPoint.y());
535 FloatPoint firstPoint; local
539 endPointsFromAngle(angle, size, firstPoint, secondPoint);
541 firstPoint = computeEndPoint(m_firstX.get(), m_firstY.get(), renderer->style(), rootStyle, size);
547 secondPoint.setX(size.width() - firstPoint.x());
549 secondPoint.setY(size.height() - firstPoint
728 FloatPoint firstPoint = computeEndPoint(m_firstX.get(), m_firstY.get(), renderer->style(), rootStyle, size); local
[all...]
/external/replicaisland/tools/
H A DExtractPoints.js72 var firstPoint = points[y];
77 edge.startX = firstPoint.anchor[0];
78 edge.startY = firstPoint.anchor[1];
/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
880 float x1 = firstPoint.x - rootPoint.x;
881 float y1 = firstPoint.y - rootPoint.y;
882 float z1 = firstPoint.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
572 normal.set(firstPoint).subtractLocal(rootPoint)

Completed in 94 milliseconds