import * as React from "react"; import { Vector2 } from 'babylonjs/Maths/math.vector'; interface IAnchorSvgPointProps { control: Vector2; anchor: Vector2; active: boolean; type: string; index: string; selected: boolean; } export class AnchorSvgPoint extends React.Component{ constructor(props: IAnchorSvgPointProps) { super(props); } render() { return ( <> ) } }