You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Summary:
Pull Request resolved: #244
Vertex Error Function tests sometimes broke because the increased number of constraints lead to higher error values than previously supported. Reducing the weight of each constraint fixes this.
Also fixed a potential issue where random normals were created using
uniform<Vector3<T>>(0, 1).normalized())
This can break in the super rare case where all three random variables are close to 0. Replaced it with a simple
uniform<Vector3<T>>(0.1, 1).normalized())
to ensure the norm always has a reasonable value.
Reviewed By: jeongseok-meta
Differential Revision: D71753984
fbshipit-source-id: 6508e75bf3efda05fbbd33732e94ac48cead64eb
0 commit comments