The SkewGraphics class provides support for skew transformations with PIXI.
let shape = new SkewGraphics();
shape.skew.x = -15;
shape.skew.y = 15;
// or
shape.skew = new PIXI.Point(-15,15);
- The SkewGraphics class is based on Graphics class in PIXI 3.0.10.