Helpful
    Preparing search index...

    Interface IZQuadrilateral<T>

    Represents a object of 4 side values.

    interface IZQuadrilateral<T = number> {
        bottom: T;
        left: T;
        right: T;
        top: T;
    }

    Type Parameters

    • T = number

      Value type. Typically number.

    Index

    Properties

    Properties

    bottom: T

    Bottom value.

    left: T

    Left value.

    right: T

    Right value.

    top: T

    Top value.