Search Issue Tracker
Won't Fix
Votes
0
Found in
2017.3.0f3
Issue ID
984952
Regression
No
Vector3.Slerp returns imprecise result if 2nd vector has smaller values than the first one
To reproduce:
1. Open repro project
2. Open test runner
3. Run all tests
Expected: 'Vector3Slerp_tIs1_ResultIsb' test will return (3.0000000, 2.0000000, 1.0000000) value
Actual: (3.0000000, 2.0000000, 0.9999997) is returned (z value in 1st vector was larger than in 2nd)
Reproduced: 5.6.5f1, 2017.1.2p4, 2017.2.1p1, 2017.3.0p1, 2018.1.0b1
Note: issue does not occur if 1st vector values are equal or smaller than second vector values
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Out-of-bounds memory access with multiple CanvasRenderers under a Canvas when using Mesh API
- Inspector tries to access file after it was deleted when the file was locked in Inspector window
- Changing Transform values in Search window Inspector loses focus while dragging and stopping mouse without releasing dragging action
- Saving changes on the dirty VFX Graph during the Play mode throws "The referenced script (Unknown) on this Behaviour is missing!" warnings
- VFX Graph Debug Info overlaps the "Initialize" block debug info by default
Resolution Note:
The Vector3 functions cannot guarantee exact float return values and floats should always be compared using functions such as Mathf.Approximately.
If exact results are required in this case consider amending code to check for 0/1 values of t first:
if (t<=0) result = a;
else if (t>=1) result = b;
else result = Vector3.Slerp(a, b, t);