rapid-render
    Preparing search index...

    Interface IMathObject<T>

    Defines the required mathematical operations for an object to be tweenable.

    interface IMathObject<T> {
        add(other: IMathObject<T>): IMathObject<T>;
        clone(): IMathObject<T>;
        multiply(scalar: number | IMathObject<T>): IMathObject<T>;
        subtract(other: IMathObject<T>): IMathObject<T>;
    }

    Type Parameters

    • T

    Implemented by

    Index

    Methods