All files / core/src/types BoundsIJK.ts

0% Statements 0/0
0% Branches 0/0
0% Functions 0/0
0% Lines 0/0

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12                       
import type Point2 from './Point2';
 
/**
 * The bounds of the voxel manager in IJK space.
 * The bounds are an array of three arrays, each containing two numbers.
 * The first number is the minimum value and the second number is the maximum value.
 * The first array is the x-axis bounds, the second array is the y-axis bounds, and the third array is the z-axis bounds.
 */
type BoundsIJK = [Point2, Point2, Point2];
 
export type { BoundsIJK as default };