Skip to content

Commit

Permalink
Refactor layout code out of renderer and fix conditional regions
Browse files Browse the repository at this point in the history
  • Loading branch information
phschaad committed Sep 27, 2024
1 parent 04c8fc1 commit 0ae9c45
Show file tree
Hide file tree
Showing 5 changed files with 1,116 additions and 1,031 deletions.
6 changes: 3 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,9 @@ export type Point2D = {
y: number,
};

export type SimpleRect = {
x: number,
y: number,
export type Size2D = {
w: number,
h: number,
};

export type SimpleRect = Point2D & Size2D;
Loading

0 comments on commit 0ae9c45

Please sign in to comment.