Skip to content

Commit

Permalink
Update AProjection3.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
HypnosNova authored Feb 18, 2024
1 parent 78d23eb commit 720a7bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/matrix4/AProjection3.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ import Matrix4Component from "./Matrix4Component";
export default abstract class AProjection3 extends Matrix4Component {
inverseMatrix = new Float32Array(16);
constructor(data = Matrix4.create()) {
super(PROJECTION_3D, data, [{
super(data, [{
label: PROJECTION_3D,
unique: true
}]);
}], PROJECTION_3D);
}

updateProjectionInverse() {
Expand Down

0 comments on commit 720a7bc

Please sign in to comment.