interface AnalysisGrid {
    max: [number, number, number];
    min: [number, number, number];
    resolution: [number, number];
}

Properties

Properties

max: [number, number, number]

World-space maximum corner of the work plane (x, y, z).

min: [number, number, number]

World-space minimum corner of the work plane (x, y, z).

resolution: [number, number]

Number of cells along the (x, y) axes. Resolution scales as nx × ny — the runtime cost is roughly nx × ny × times.