refactor: ice editor dialog

This commit is contained in:
Azgaar 2022-07-09 21:08:49 +03:00
parent 0dd7468184
commit 3125366944
12 changed files with 75 additions and 46 deletions

8
src/types/grid.d.ts vendored
View file

@ -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;