This PR fixes the issue outlined in issue #2329 ### Change Type - [x] `patch` — Bug fix [^1]: publishes a `patch` release, for devDependencies use `internal` [^2]: will not publish a new version ### Release Notes - Fix for `Matrix2d.Scale` function
This commit is contained in:
parent
3cf4dae34d
commit
80f8c98754
1 changed files with 1 additions and 1 deletions
|
@ -173,7 +173,7 @@ export class Matrix2d {
|
|||
(x: number, y: number): Matrix2dModel
|
||||
(x: number, y: number, cx: number, cy: number): Matrix2dModel
|
||||
} = (x: number, y: number, cx?: number, cy?: number) => {
|
||||
const scaleMatrix2d = new Matrix2d(x, 0, 0, 0, y, 0)
|
||||
const scaleMatrix2d = new Matrix2d(x, 0, 0, y, 0, 0)
|
||||
|
||||
if (cx === undefined) return scaleMatrix2d
|
||||
|
||||
|
|
Loading…
Reference in a new issue