NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/@antv/g2/esm/geometry/polygon.d.ts

20 lines
511 B
TypeScript
Raw Normal View History

2023-09-14 14:47:11 +08:00
import { Datum } from '../interface';
import Geometry from './base';
/** 引入 Path 对应的 ShapeFactory */
import './shape/polygon';
/**
* Polygon
*
*/
export default class Polygon extends Geometry {
readonly type: string;
readonly shapeType: string;
protected generatePoints: boolean;
/**
* Shape
* @param obj
* @returns
*/
protected createShapePointsCfg(obj: Datum): any;
}