Skip to content

Commit f8836b1

Browse files
VMF-HIBIKIqi.zheng
andauthored
Fix RecoverParts transform order in public API (#99)
Co-authored-by: qi.zheng <qi.zheng@motphys.com>
1 parent 8f17655 commit f8836b1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

public/coacd.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ namespace coacd {
99
void RecoverParts(vector<Model> &meshes, vector<double> bbox,
1010
array<array<double, 3>, 3> rot) {
1111
for (int i = 0; i < (int)meshes.size(); i++) {
12-
meshes[i].Recover(bbox);
1312
meshes[i].RevertPCA(rot);
13+
meshes[i].Recover(bbox);
1414
}
1515
}
1616

0 commit comments

Comments
 (0)