逐步完成前后端服务器
This commit is contained in:
18
frontend/node_modules/zrender/lib/graphic/helper/subPixelOptimize.d.ts
generated
vendored
Normal file
18
frontend/node_modules/zrender/lib/graphic/helper/subPixelOptimize.d.ts
generated
vendored
Normal file
@ -0,0 +1,18 @@
|
||||
import { PathStyleProps } from '../Path';
|
||||
declare type LineShape = {
|
||||
x1: number;
|
||||
y1: number;
|
||||
x2: number;
|
||||
y2: number;
|
||||
};
|
||||
declare type RectShape = {
|
||||
x: number;
|
||||
y: number;
|
||||
width: number;
|
||||
height: number;
|
||||
r?: number | number[];
|
||||
};
|
||||
export declare function subPixelOptimizeLine(outputShape: Partial<LineShape>, inputShape: LineShape, style: Pick<PathStyleProps, 'lineWidth'>): LineShape;
|
||||
export declare function subPixelOptimizeRect(outputShape: Partial<RectShape>, inputShape: RectShape, style: Pick<PathStyleProps, 'lineWidth'>): RectShape;
|
||||
export declare function subPixelOptimize(position: number, lineWidth?: number, positiveOrNegative?: boolean): number;
|
||||
export {};
|
Reference in New Issue
Block a user