mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2024-12-22 21:53:27 -05:00
44 lines
1.2 KiB
TypeScript
44 lines
1.2 KiB
TypeScript
import { translateRotation, translateZeroRotation } from '@plugin/translators';
|
|
import { applyInverseRotation, getRotation, hasRotation } from '@plugin/utils';
|
|
|
|
import { ShapeBaseAttributes, ShapeGeomAttributes } from '@ui/lib/types/shapes/shape';
|
|
|
|
export const transformRotation = (
|
|
node: LayoutMixin
|
|
): Pick<ShapeBaseAttributes, 'transform' | 'transformInverse' | 'rotation'> => {
|
|
const rotation = getRotation(node.absoluteTransform);
|
|
|
|
if (!hasRotation(rotation)) {
|
|
return translateZeroRotation();
|
|
}
|
|
|
|
return translateRotation(node.absoluteTransform, rotation);
|
|
};
|
|
|
|
export const transformRotationAndPosition = (
|
|
node: LayoutMixin
|
|
): Pick<ShapeBaseAttributes, 'transform' | 'transformInverse' | 'rotation'> &
|
|
Pick<ShapeGeomAttributes, 'x' | 'y'> => {
|
|
const x = node.absoluteTransform[0][2];
|
|
const y = node.absoluteTransform[1][2];
|
|
const rotation = getRotation(node.absoluteTransform);
|
|
|
|
if (!hasRotation(rotation) || !node.absoluteBoundingBox) {
|
|
return {
|
|
x,
|
|
y,
|
|
...translateZeroRotation()
|
|
};
|
|
}
|
|
|
|
const referencePoint = applyInverseRotation(
|
|
{ x, y },
|
|
node.absoluteTransform,
|
|
node.absoluteBoundingBox
|
|
);
|
|
|
|
return {
|
|
...referencePoint,
|
|
...translateRotation(node.absoluteTransform, rotation)
|
|
};
|
|
};
|