All files / ts/models vector2.ts

100% Statements 4/4
100% Branches 2/2
100% Functions 1/1
100% Lines 4/4

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15        1x           931x 931x 931x    
export interface IVector2 extends EventTarget {
    x: number;
    y: number;
}
export class Vector2 extends EventTarget implements IVector2 {
 
    public x: number;
    public y: number;
 
    public constructor(x: number = 0, y: number = 0) {
        super();
        this.x = x;
        this.y = y;
    }
}