Skip to content

Commit

Permalink
tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
petamoriken committed Feb 6, 2024
1 parent fe86403 commit b53a1a1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ext/geometry/lib.deno_geometry.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -169,13 +169,13 @@ interface DOMMatrix extends DOMMatrixReadOnly {
/**
* Modifies the matrix by applying the specified skew transformation along the X-axis.
*
* @param sx
* @param sx in degrees
*/
skewXSelf(sx?: number): DOMMatrix;
/**
* Modifies the matrix by applying the specified skew transformation along the Y-axis.
*
* @param sy
* @param sy in degrees
*/
skewYSelf(sy?: number): DOMMatrix;
/**
Expand Down Expand Up @@ -348,13 +348,13 @@ interface DOMMatrixReadOnly {
/**
* Returns a new DOMMatrix created by applying the specified skew transformation to the source matrix along its X-axis.
*
* @param sx
* @param sx in degrees
*/
skewX(sx?: number): DOMMatrix;
/**
* Returns a new DOMMatrix created by applying the specified skew transformation to the source matrix along its Y-axis.
*
* @param sy
* @param sy in degrees
*/
skewY(sy?: number): DOMMatrix;
toFloat32Array(): Float32Array;
Expand Down

0 comments on commit b53a1a1

Please sign in to comment.