mirror of
https://github.com/Azgaar/Fantasy-Map-Generator.git
synced 2025-12-18 18:11:24 +01:00
refactor: ice editor dialog
This commit is contained in:
parent
0dd7468184
commit
3125366944
12 changed files with 75 additions and 46 deletions
8
src/types/grid.d.ts
vendored
8
src/types/grid.d.ts
vendored
|
|
@ -2,16 +2,22 @@ interface IGrid {
|
|||
spacing: number;
|
||||
boundary: TPoints;
|
||||
points: TPoints;
|
||||
features: IFeature[];
|
||||
vertices: {
|
||||
p: TPoints;
|
||||
v: number[][];
|
||||
c: number[][];
|
||||
};
|
||||
cells: {
|
||||
i: IntArray;
|
||||
b: IntArray;
|
||||
c: number[][];
|
||||
v: number[][];
|
||||
h: IntArray;
|
||||
t: IntArray;
|
||||
f: IntArray;
|
||||
prec: IntArray;
|
||||
};
|
||||
features: IFeature[];
|
||||
}
|
||||
interface IFeature {
|
||||
i: number;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue