Skip to content

Commit

Permalink
doc-types-mat4-isIdentity
Browse files Browse the repository at this point in the history
  • Loading branch information
hrgdavor committed May 2, 2024
1 parent 0998e7e commit 42c9a2a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/modeling/src/maths/mat4/index.d.ts
Expand Up @@ -12,6 +12,7 @@ export { default as fromXRotation } from './fromXRotation'
export { default as fromYRotation } from './fromYRotation'
export { default as fromZRotation } from './fromZRotation'
export { default as identity } from './identity'
export { default as isIdentity } from './isIdentity'
export { default as isMirroring } from './isMirroring'
export { default as mirrorByPlane } from './mirrorByPlane'
export { default as multiply } from './multiply'
Expand Down
5 changes: 5 additions & 0 deletions packages/modeling/src/maths/mat4/isIdentity.d.ts
@@ -0,0 +1,5 @@
import Mat4 from './type'

export default isIdentity

declare function isIdentity(matrix: Mat4): boolean

0 comments on commit 42c9a2a

Please sign in to comment.