Newer
Older
pixi.js / src / renderers / webgl / utils / TextureUvs.js
@Chad Engler Chad Engler on 27 Dec 2014 195 bytes tons of jshint and typo fixes
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;