| | 1 | | using UnityEngine; |
| | 2 | |
|
| | 3 | | public static class Utilities { |
| 1510 | 4 | | public static Vector3 GenerateRandomNoise(Vector3 standardDeviation) { |
| 1510 | 5 | | return new Vector3(Random.Range(-standardDeviation.x, standardDeviation.x), |
| | 6 | | Random.Range(-standardDeviation.y, standardDeviation.y), |
| | 7 | | Random.Range(-standardDeviation.z, standardDeviation.z)); |
| 1510 | 8 | | } |
| | 9 | |
|
| 0 | 10 | | public static float ConvertMpsToKnots(float mps) { |
| 0 | 11 | | return mps * 1.94384f; |
| 0 | 12 | | } |
| | 13 | |
|
| 0 | 14 | | public static float ConvertMetersToFeet(float meters) { |
| 0 | 15 | | return meters * 3.28084f; |
| 0 | 16 | | } |
| | 17 | | } |