Newer
Older
pixi.js / src / core / renderers / webgl / utils / TextureUvs.js
@Chad Engler Chad Engler on 28 Dec 2014 195 bytes initial move to new module folders
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;