|
@@ -3,7 +3,6 @@ import { Rect } from "konva/lib/shapes/Rect";
|
|
|
import { getRealAbsoluteSize } from "./shape-helper";
|
|
|
import { Group } from "konva/lib/Group";
|
|
|
import { KonvaEventObject } from "konva/lib/Node";
|
|
|
-import { Circle } from "konva/lib/shapes/Circle";
|
|
|
|
|
|
export type SVGPaths = (
|
|
|
| string
|
|
@@ -109,8 +108,6 @@ export const pathsToActShape = (props: PathsToActShapeProps, test = true) => {
|
|
|
const group = new Group();
|
|
|
group.add(offsetGroup);
|
|
|
|
|
|
- const c = new Circle({ fill: "red", radius: 0.06 });
|
|
|
- group.add(c);
|
|
|
return {
|
|
|
getSize: () => {
|
|
|
const size = rect.getSize();
|