移除color

This commit is contained in:
yhh
2020-12-06 23:09:03 +08:00
parent 8b3b645fbb
commit 2a0d4ef4dd
4 changed files with 1 additions and 162 deletions

View File

@@ -2953,24 +2953,6 @@ declare module es {
static decodeCSV(input: string): Array<number>;
}
}
declare module es {
class Color {
/**
* 存储为RGBA
*/
private _packedValue;
/**
* 从代表红、绿、蓝和alpha值的标量构造RGBA颜色。
*/
constructor(r: number, g: number, b: number, alpha: number);
b: number;
g: number;
r: number;
a: number;
packedValue: number;
equals(other: Color): boolean;
}
}
declare module es {
class EdgeExt {
static oppositeEdge(self: Edge): Edge;