sesaparcours
    Preparing search index...

    Definition of a grid - the width/height of each cell, and, optionally, a threshold value for each axis to use when trying to snap some coordinate to the grid.

    interface Grid {
        h: number;
        thresholdX?: number;
        thresholdY?: number;
        w: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    h: number
    thresholdX?: number
    thresholdY?: number
    w: number