chore: 删除 graphics 的 todo 注释

This commit is contained in:
unanmed 2025-02-22 18:35:48 +08:00
parent d2bd98b735
commit 9588340b11

View File

@ -5,16 +5,6 @@ import { ElementNamespace, ComponentInternalInstance } from 'vue';
import { clamp, isNil } from 'lodash-es';
import { logger } from '@/core/common/logger';
/*
* Expected usage (this comment needs to be deleted after implementing correctly):
* <rect x={10} y={30} width={50} height={30} fill stroke /> <!-- -->
* <circle x={10} y={50} radius={10} start={Math.PI / 2} end={Math.PI} stroke /> <!-- -->
* <ellipse x={100} y={50} radiusX={10} radiusY={50} strokeAndFill /> <!-- -->
* <rect x={100} y={50} width={50} height={30} fill /> <!-- -->
* <rect x={100} y={50} width={50} height={30} /> <!-- -->
* Line BezierCurve QuadraticCurve
*/
export interface ILineProperty {
/** 线宽 */
lineWidth: number;