Quick recipes
Paper.js referenceclamp, lerp, invlerp, range
const clamp = (vmin, vmax, v) => Math.max(vmin, Math.min(v, vmax));
const lerp = (x, y, a) => x * (1 - a) + y * a;
const invlerp = (x, y, a) => clamp(0, 1,(a - x) / (y - x));
const range = (x1, y1, x2, y2, a) => lerp(x2, y2, invlerp(x1, y1, a));
const rand = (min, max) => min + (max-min)*Math.random();
const round = (number, count = 3) => +(Math.round(number + "e+" + count) + "e-" + count);
shuffle array
function shuffle(array) {
return array.map(value => ({ value, sort: Math.random() })).sort((a, b) => a.sort - b.sort).map(({ value }) => value);
}
single line to multi-line
function cutText(text, charactersNumber = 50) {
const len = text.length;
const iterationNumber = Math.floor(len/charactersNumber);
if (iterationNumber == 0) {
return text;
}
let result = '';
let tmpText = text;
for (let i = 0; i < iterationNumber; i++) {
const t = tmpText.substring(charactersNumber).indexOf(" ");
const k = charactersNumber + Math.max(1, t);
result += t > 0 ? tmpText.substring(0, k) + '
' : tmpText.substring(0, k);
tmpText = t > 0 ? tmpText.substring(k+1) : tmpText.substring(k);
}
result += tmpText;
return result;
}
rumble
const ALLOW_VIBRATION = true;
function rumble(gpIdx = 0, {duration = 100, weakMagnitude = 1, strongMagnitude = 1}) {
if (ALLOW_VIBRATION) {
navigator.getGamepads()[gpIdx].vibrationActuator.playEffect("dual-rumble", {
startDelay: 0,
duration: duration,
weakMagnitude: weakMagnitude,
strongMagnitude: strongMagnitude,
});
}
}
PointText
const text = new PointText({
point: [50, 50],
content: 'Lorem ipsum',
fillColor: 'black',
fontFamily: 'Courier New',
fontWeight: 'bold',
fontSize: 25
});
Path
const path = new Path({
segments: [[20, 20], [80, 80], [140, 20]],
fillColor: 'black',
strokeColor: 'red',
strokeWidth: 20,
strokeCap: 'round',
closed: true
});
Path.Circle
const path = new Path.Circle({
center: [80, 50],
radius: 30,
strokeColor: 'black'
});
Path.Line
const path = new Path.Line({
from: [20, 20],
to: [80, 80],
strokeColor: 'black'
});
Path.Rectangle
const path = new Path.Rectangle({
point: [20, 20],
size: [60, 60],
strokeColor: 'black'
});
Shape.Circle
const shape = new Shape.Circle({
center: [80, 50],
radius: 30,
strokeColor: 'black'
});
Shape.Rectangle
const shape = new Shape.Rectangle({
point: [20, 20],
size: [60, 60],
strokeColor: 'black'
});
TweenTo
item.tweenTo(
{ position: [0, 0] },
{
duration: 100,
easing: 'linear',
}
);
// All the easing options are: linear, easeInQuad, easeOutQuad, easeInOutQuad, easeInCubic, easeOutCubic, easeInOutCubic, easeInQuart, easeOutQuart, easeInOutQuart, easeInQuint, easeOutQuint, easeInOutQuint
Intersections
const intersectionsGroup = new Group();
function showIntersections(path1, path2) {
var intersections = path1.getIntersections(path2);
for (var i = 0; i < intersections.length; i++) {
const path = new Path.Circle({
center: intersections[i].point,
radius: 5,
fillColor: '#FFD700'
});
intersectionsGroup.addChild(path);
}
}
Loading...
Console