Software: Apache. PHP/8.1.30 uname -a: Linux server1.tuhinhossain.com 5.15.0-163-generic #173-Ubuntu SMP Tue Oct 14 17:51:00 UTC uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root) Safe-mode: OFF (not secure) /home/picotech/domains/inventory.picotech.app/public_html/node_modules/zrender/lib/graphic/shape/ drwxr-xr-x | |
| Viewing file: Select action/file-type: var Path = require("../Path");
/**
* 内外旋轮曲线
* @module zrender/graphic/shape/Trochold
*/
var cos = Math.cos;
var sin = Math.sin;
var _default = Path.extend({
type: 'trochoid',
shape: {
cx: 0,
cy: 0,
r: 0,
r0: 0,
d: 0,
location: 'out'
},
style: {
stroke: '#000',
fill: null
},
buildPath: function (ctx, shape) {
var x1;
var y1;
var x2;
var y2;
var R = shape.r;
var r = shape.r0;
var d = shape.d;
var offsetX = shape.cx;
var offsetY = shape.cy;
var delta = shape.location === 'out' ? 1 : -1;
if (shape.location && R <= r) {
return;
}
var num = 0;
var i = 1;
var theta;
x1 = (R + delta * r) * cos(0) - delta * d * cos(0) + offsetX;
y1 = (R + delta * r) * sin(0) - d * sin(0) + offsetY;
ctx.moveTo(x1, y1); // 计算结束时的i
do {
num++;
} while (r * num % (R + delta * r) !== 0);
do {
theta = Math.PI / 180 * i;
x2 = (R + delta * r) * cos(theta) - delta * d * cos((R / r + delta) * theta) + offsetX;
y2 = (R + delta * r) * sin(theta) - d * sin((R / r + delta) * theta) + offsetY;
ctx.lineTo(x2, y2);
i++;
} while (i <= r * num / (R + delta * r) * 360);
}
});
module.exports = _default; |
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.004 ]-- |