Home
last modified time | relevance | path

Searched refs:nextPoint (Results 1 – 2 of 2) sorted by relevance

/plugin/geophp/vendor/funiq/geophp/src/Geometry/
H A DLineString.php207 $nextPoint = $points[$i + 1];
210 sin(deg2rad($point->y())) * sin(deg2rad($nextPoint->y())) +
211 cos(deg2rad($point->y())) * cos(deg2rad($nextPoint->y())) *
212 cos(deg2rad(abs($point->x() - $nextPoint->x())))
/plugin/bpmnioeditor/vendor/bpmnio-js/
H A Dbpmn-modeler.development.js4284 nextPoint;
4289 nextPoint = waypoints[idx + 1];
4291 if (pointDistance(point, nextPoint) === 0 ||
4292 pointsOnLine(previousPoint, nextPoint, point)) {
41763 function adjustDocking(startPoint, nextPoint, elementMid) { argument
41775 var verticalIntersect = lineIntersect(startPoint, nextPoint, elementMid, elementTop),
41776 horizontalIntersect = lineIntersect(startPoint, nextPoint, elementMid, elementLeft);