taffy/compute/grid/types/
mod.rs

1//! Structs and enums that are used within the grid module
2mod cell_occupancy;
3mod coordinates;
4mod grid_item;
5mod grid_track;
6mod grid_track_counts;
7mod named;
8
9// Publish only locally in the grid module
10pub(super) use cell_occupancy::{CellOccupancyMatrix, CellOccupancyState};
11pub(crate) use coordinates::{GridCoordinate, GridLine, OriginZeroLine};
12pub(super) use grid_item::GridItem;
13pub(super) use grid_track::GridTrack;
14pub(super) use grid_track_counts::TrackCounts;
15pub(super) use named::NamedLineResolver;
16
17#[allow(unused_imports)]
18pub(super) use grid_track::GridTrackKind;