mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2024-12-22 13:43:03 -05:00
18 lines
537 B
TypeScript
18 lines
537 B
TypeScript
import { transformBlend, transformDimensionAndPosition } from '@plugin/transformers/partials';
|
|
import { translateFills } from '@plugin/translators';
|
|
|
|
import { CircleShape } from '@ui/lib/types/circle/circleShape';
|
|
|
|
export const transformEllipseNode = (
|
|
node: EllipseNode,
|
|
baseX: number,
|
|
baseY: number
|
|
): CircleShape => {
|
|
return {
|
|
type: 'circle',
|
|
name: node.name,
|
|
fills: translateFills(node.fills, node.width, node.height),
|
|
...transformDimensionAndPosition(node, baseX, baseY),
|
|
...transformBlend(node)
|
|
};
|
|
};
|