mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-15 04:45:06 +01:00
6 lines
160 B
TypeScript
6 lines
160 B
TypeScript
export type Tessellation1D<T> = T[];
|
|
|
|
export type Tessellation2DNode<T> = [T,T,T]; //just a triangle
|
|
|
|
export type Tessellation2D<T> = Tessellation2DNode<T>[];
|
|
|