Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into reduce-markers
Browse files Browse the repository at this point in the history
# Conflicts:
#	CHANGELOG.md
  • Loading branch information
schaumb committed May 28, 2024
2 parents 0104fc4 + acf9b48 commit c5a04a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
### Fixed

- Do not calculate disabled markers to the color normalization.
- More precise TS type for transform matrix in event handlers.
- On split charts the first range was not part of the separation calculation.
- When the first marker was disabled it was calculated as an enabled marker on the XY normalization.

Expand Down
2 changes: 1 addition & 1 deletion src/apps/weblib/ts-api/geom.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export interface Line {
}

/** Object representing an affine transformation 2x3 matrix. */
export type AffineTransform = number[][]
export type AffineTransform = [[number, number, number], [number, number, number]]

/** Rectangle transformed by an affine transformation. */
export interface TransformedRect {
Expand Down

0 comments on commit c5a04a1

Please sign in to comment.