Home
last modified time | relevance | path

Searched refs:p1y (Results 1 – 11 of 11) sorted by relevance

/plugin/diagramsnet/lib/shapes/
DmxNetworks.js99 var p1y = midY + ny * dist / 3 * 0.1 + nx / 3 * dist * 0.1;
111 c.lineTo(p1x, p1y);
DmxLeanMap.js1888 var p1y = midY - ny * dist * 0.1 + nx / 3 * dist * 0.1;
1895 c.lineTo(p1x, p1y);
1900 var dy = pe.y - p1y;
/plugin/sequencediagram/bower_components/raphael/dev/
Draphael.core.js1210 R.findDotsAtSegment = function (p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y, t) { argument
1217 y = t13 * p1y + t12 * 3 * t * c1y + t1 * 3 * t * t * c2y + t3 * p2y,
1219 my = p1y + 2 * t * (c1y - p1y) + t2 * (c2y - 2 * c1y + p1y),
1223 ay = t1 * p1y + t * c1y,
1268 R.bezierBBox = function (p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y) { argument
1270 p1x = [p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y];
1919 findDotAtSegment = function (p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y, t) { argument
1923 … y: pow(t1, 3) * p1y + pow(t1, 2) * 3 * t * c1y + t1 * 3 * t * t * c2y + pow(t, 3) * p2y
1926 curveDim = cacher(function (p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y) { argument
1932 y = [p1y, p2y],
[all …]
/plugin/geophp/vendor/funiq/geophp/src/Geometry/
DGeometry.php404 $p1y = $segment1End->y();
411 $s1y = $p1y - $p0y;
/plugin/callflow/
Draphael.js1596 R.findDotsAtSegment = function (p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y, t) { argument
1603 y = t13 * p1y + t12 * 3 * t * c1y + t1 * 3 * t * t * c2y + t3 * p2y,
1605 my = p1y + 2 * t * (c1y - p1y) + t2 * (c2y - 2 * c1y + p1y),
1609 ay = t1 * p1y + t * c1y,
1654 R.bezierBBox = function (p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y) { argument
1656 p1x = [p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y];
2305 findDotAtSegment = function (p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y, t) { argument
2309 … y: pow(t1, 3) * p1y + pow(t1, 2) * 3 * t * c1y + t1 * 3 * t * t * c2y + pow(t, 3) * p2y
2312 curveDim = cacher(function (p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y) { argument
2318 y = [p1y, p2y],
[all …]
/plugin/advrack/
Draphael.js1596 R.findDotsAtSegment = function (p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y, t) { argument
1603 y = t13 * p1y + t12 * 3 * t * c1y + t1 * 3 * t * t * c2y + t3 * p2y,
1605 my = p1y + 2 * t * (c1y - p1y) + t2 * (c2y - 2 * c1y + p1y),
1609 ay = t1 * p1y + t * c1y,
1654 R.bezierBBox = function (p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y) { argument
1656 p1x = [p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y];
2305 findDotAtSegment = function (p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y, t) { argument
2309 … y: pow(t1, 3) * p1y + pow(t1, 2) * 3 * t * c1y + t1 * 3 * t * t * c2y + pow(t, 3) * p2y
2312 curveDim = cacher(function (p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y) { argument
2318 y = [p1y, p2y],
[all …]
/plugin/sequencediagram/bower_components/snap.svg/dist/
Dsnap.svg.js5386 function getPointAtSegmentLength(p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y, length) { argument
5388 return bezlen(p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y);
5390 return findDotsAtSegment(p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y,
5391 getTotLen(p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y, length));
5458 function findDotsAtSegment(p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y, t) { argument
5465 y = t13 * p1y + t12 * 3 * t * c1y + t1 * 3 * t * t * c2y + t3 * p2y,
5467 my = p1y + 2 * t * (c1y - p1y) + t2 * (c2y - 2 * c1y + p1y),
5471 ay = t1 * p1y + t * c1y,
5486 function bezierBBox(p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y) { argument
5488 p1x = [p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y];
[all …]
/plugin/dw2pdf/vendor/mpdf/mpdf/src/
DMpdf.php17285 $p1y = $y00 + $bl;
17308 $shadow .= sprintf('%.3F %.3F m ', ($p1x ) * Mpdf::SCALE, ($this->h - ($p1y )) * Mpdf::SCALE);
17309 …('%.3F %.3F %.3F %.3F %.3F %.3F c ', ($p1c2x) * Mpdf::SCALE, ($this->h - ($p1y)) * Mpdf::SCALE, ($…
17311 $patch_array[0]['points'] = [$p1x, $p1y, $p1x, $p1y,
17315 $p1c2x, $p1y];
17321 $p1y = $y00 + $d1 + $brbgTR_V;
17330 $p1y = $y00 + $bl;
17343 $p1x, $p1y];
17349 $p1y = $y00 + $h00 - $d1 - $brbgBR_V;
17350 $p1c2y = $p1y + ($d2 + $brbgBR_V) * $mag;
[all …]
/plugin/diagramsnet/lib/js/diagramly/vsdx/
Dimporter.js5095 function sign (p1x, p1y, p2x, p2y, p3x, p3y) argument
5097 return (p1x - p3x) * (p2y - p3y) - (p2x - p3x) * (p1y - p3y);
6765 … var p1y = Math.sqrt(x1 * x1 + y1 * y1) * Math.sin(Math.atan2(y1, x1) - ang);
6770 … * (p2x + p3x) * (p1y - p2y) + d * d * (p1y - p2y) * (p2y - p3y) * (p1y - p3y)) / (2 * ((p1x - p2x…
6771 …) / (d * d) + (p2x - p3x) * (p1y - p2y) * (p1y + p2y) - (p1x - p2x) * (p2y - p3y) * (p2y + p3y)) /…
6777 var dy = p1y - p0y;
6791 …if (com.mxgraph.io.vsdx.mxVsdxUtils.isInsideTriangle(p0x, p0y, p1x, p1y, p2x, p2y, p3x, p3y)) // &…
/plugin/datatables/assets/pdfmake/
Dpdfmake.js21017 var BezierSegment = function BezierSegment(p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y) {
21020 …var equationY = [p1y, -3 * p1y + 3 * c1y, 3 * p1y - 6 * c1y + 3 * c2y, -p1y + 3 * c1y - 3 * c2y + …
21022 …var derivativeY = [-3 * p1y + 3 * c1y, 6 * p1y - 12 * c1y + 6 * c2y, -3 * p1y + 9 * c1y - 9 * c2y …
21032 …this.startPoint = [p1x, p1y, isEqual(p1x, c1x) && isEqual(p1y, c1y) ? Math.atan2(c2y - c1y, c2x - …
21100 var LineSegment = function LineSegment(p1x, p1y, p2x, p2y) {
21101 this.totalLength = Math.sqrt((p2x - p1x) * (p2x - p1x) + (p2y - p1y) * (p2y - p1y));
21102 this.startPoint = [p1x, p1y, Math.atan2(p2y - p1y, p2x - p1x)];
21103 this.endPoint = [p2x, p2y, Math.atan2(p2y - p1y, p2x - p1x)];
/plugin/bpmnioeditor/vendor/bpmnio-js/
Dbpmn-modeler.development.js3357 function findDotsAtSegment(p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y, t) { argument
3364 y = t13 * p1y + t12 * 3 * t * c1y + t1 * 3 * t * t * c2y + t3 * p2y;