Newer
Older
pixi.js / src / core / textures / TextureUvs.js
@Chad Engler Chad Engler on 9 Jan 2015 195 bytes move TextureUvs to textures/
function TextureUvs() {
    this.x0 = 0;
    this.y0 = 0;

    this.x1 = 0;
    this.y1 = 0;

    this.x2 = 0;
    this.y2 = 0;

    this.x3 = 0;
    this.y3 = 0;
}

module.exports = TextureUvs;