Skip to content

Commit

Permalink
CI run 3688 pushed to gh-pages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Feb 19, 2025
1 parent 4d7ef75 commit ba31255
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
11 changes: 9 additions & 2 deletions demo/trunk/dist/dwv.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3639,11 +3639,18 @@ export declare class Matrix33 {
* Check for Matrix33 equality.
*
* @param {Matrix33} rhs The other matrix to compare to.
* @returns {boolean} True if both matrices are equal.
*/
equals(rhs: Matrix33): boolean;
/**
* Check for Matrix33 similarity.
*
* @param {Matrix33} rhs The other matrix to compare to.
* @param {number} [tol] Optional number comparison tolerance,
* defaults to Number.EPSILON.
* @returns {boolean} True if both matrices are equal.
* @returns {boolean} True if both matrices are similar.
*/
equals(rhs: Matrix33, tol?: number): boolean;
isSimilar(rhs: Matrix33, tol?: number): boolean;
/**
* Get a string representation of the Matrix33.
*
Expand Down
2 changes: 1 addition & 1 deletion demo/trunk/dist/dwv.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion demo/trunk/dist/dwv.min.js.map

Large diffs are not rendered by default.

0 comments on commit ba31255

Please sign in to comment.