Skip to content

Commit

Permalink
Update GpsCoords.cs
Browse files Browse the repository at this point in the history
Fixed scale matrix to have last element to be 1
  • Loading branch information
andreiveselov committed Aug 29, 2023
1 parent b026ca7 commit ce87a18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Obj2Tiles/Stages/Model/GpsCoords.cs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public double[] ToEcefTransform()
s, 0, 0, 0,
0, s, 0, 0,
0, 0, s, 0,
0, 0, 0, s
0, 0, 0, 1
};

var mult = MultiplyMatrix(res, rot);
Expand Down

0 comments on commit ce87a18

Please sign in to comment.