Searched refs:firstPoint (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSGradientValue.cpp571 static void endPointsFromAngle(float angleDeg, const IntSize& size, FloatPoint& firstPoint, FloatPoint& secondPoint, CSSGradientType type) argument
582 firstPoint.set(0, size.height());
588 firstPoint.set(0, 0);
594 firstPoint.set(0, 0);
600 firstPoint.set(size.width(), 0);
635 firstPoint.set(halfWidth - endX, halfHeight + endY);
642 FloatPoint firstPoint; local
646 endPointsFromAngle(angle, size, firstPoint, secondPoint, m_gradientType);
650 firstPoint = computeEndPoint(m_firstX.get(), m_firstY.get(), conversionData, size);
655 secondPoint.setX(size.width() - firstPoint
980 FloatPoint firstPoint = computeEndPoint(m_firstX.get(), m_firstY.get(), conversionData, 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 205 milliseconds