You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
661 B
JavaScript
24 lines
661 B
JavaScript
// Copyright (C) 2021-2022 Intel Corporation
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
export function generateString(countPointsToMove, arrow) {
|
|
let action = '';
|
|
for (let i = 0; i < countPointsToMove; i++) {
|
|
action += `{${arrow}}`;
|
|
}
|
|
return action;
|
|
}
|
|
|
|
function deltaTransformPoint(matrix, point) {
|
|
const dx = point.x * matrix.a + point.y * matrix.c;
|
|
const dy = point.x * matrix.b + point.y * matrix.d;
|
|
return { x: dx, y: dy };
|
|
}
|
|
|
|
export function decomposeMatrix(matrix) {
|
|
const px = deltaTransformPoint(matrix, { x: 0, y: 1 });
|
|
const skewX = ((180 / Math.PI) * Math.atan2(px.y, px.x) - 90).toFixed(1);
|
|
return skewX;
|
|
}
|