pixi.js
    Preparing search index...

    Interface TransformableObjectAdvanced

    The data structure that contains the position, scale, pivot, skew and rotation of an object. This is used by the Matrix class to decompose the matrix into its components.

    interface TransformableObject {
        pivot: PointData;
        position: PointData;
        rotation: number;
        scale: PointData;
        skew: PointData;
    }
    Index

    Properties

    pivot: PointData

    The pivot of the object

    position: PointData

    The position of the object

    rotation: number

    The rotation of the object

    scale: PointData

    The scale of the object

    skew: PointData

    The skew of the object