fixing errors

This commit is contained in:
Elemar Rodrigues Severo Junior
2015-01-07 14:02:42 -02:00
parent 2f0df42903
commit 074fd79550
2 changed files with 5 additions and 5 deletions
+4 -4
View File
@@ -49,13 +49,13 @@ declare module poly2tri {
static mul(s: number, p: IPointLike): Point;
static cross(a: number, b: number);
static cross(a: number, b: number): number;
static cross(a: IPointLike, b: number);
static cross(a: IPointLike, b: number): number;
static cross(a: IPointLike, b: IPointLike);
static cross(a: IPointLike, b: IPointLike): number;
static cross(a: number, b: IPointLike);
static cross(a: number, b: IPointLike): number;
static toStringBase(p: IPointLike): string;