We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04d9ed0 commit 034d901Copy full SHA for 034d901
1 file changed
Sources/Matrix4x4+simd.swift
@@ -48,6 +48,10 @@ public struct Matrix4x4f: Codable, Equatable {
48
public var inversed: Matrix4x4f {
49
return unsafeBitCast(d.inverse, to: Matrix4x4f.self)
50
}
51
+
52
+ public var determinant: Float {
53
+ return d.determinant
54
+ }
55
56
// MARK: - subscript operations
57
0 commit comments