UNPKG

@visactor/vrender-core

Version:
8 lines (7 loc) 294 B
import type { IGraphicAttribute, IGraphic } from '../graphic'; export type IIsogonAttribute = { radius: number; edgeNumber: number; }; export type IIsogonGraphicAttribute = Partial<IGraphicAttribute> & Partial<IIsogonAttribute>; export type IIsogon = IGraphic<IIsogonGraphicAttribute>;