Gets a random with components in a range between [0;1].
| 147 | /// Gets a random <see cref="Vector3"/> with components in a range between [0;1]. |
| 148 | /// </summary> |
| 149 | Vector3 GetVector3() const |
| 150 | { |
| 151 | return Vector3(GetFraction(), GetFraction(), GetFraction()); |
| 152 | } |
| 153 | |
| 154 | /// <summary> |
| 155 | /// Helper function for rand implementations. |
nothing calls this directly
no test coverage detected