@shopify/react-native-skia
Version:
High-performance React Native Graphics using Skia
24 lines (20 loc) • 712 B
text/typescript
import type { SkRect } from "../../../skia/types";
import type { DrawingContext, OvalProps } from "../../types";
import { NodeType } from "../../types";
import { processRect } from "../datatypes";
import { JsiDrawingNode } from "../DrawingNode";
import type { NodeContext } from "../Node";
export class OvalNode extends JsiDrawingNode<OvalProps, SkRect> {
constructor(ctx: NodeContext, props: OvalProps) {
super(ctx, NodeType.Oval, props);
}
deriveProps() {
return processRect(this.Skia, this.props);
}
draw({ canvas, paint }: DrawingContext) {
if (this.derived === undefined) {
throw new Error("OvalNode: rect is undefined");
}
canvas.drawOval(this.derived, paint);
}
}