Skip to content

Commit

Permalink
Fixed a big where transformReverse did not do that
Browse files Browse the repository at this point in the history
  • Loading branch information
lessthanoptimal committed Dec 8, 2023
1 parent e443a4a commit a56437c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main/src/georegression/struct/se/Se3_F64.java
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ public Point4D_F64 transform(Point4D_F64 src, @Nullable Point4D_F64 dst) {
}

public Point4D_F64 transformReverse(Point4D_F64 src, @Nullable Point4D_F64 dst) {
return SePointOps_F64.transform(this, src, dst);
return SePointOps_F64.transformReverse(this, src, dst);
}

public Se3_F64 copy() {
Expand Down

0 comments on commit a56437c

Please sign in to comment.