【UnityC#】Math.Cos、Mathf.Cosの速度比較

Math.Cos、Mathf.Cosの速度比較をしたので結果を残しておきます。 [ 環境 ] Unity 2018.4.14.f1 [ 比較結果 ] Math.Cos 20 ms Mathf.Cos 31 ms [ スクリプト ] using System.Collections; using System.Collections.Generic; using UnityEngine; using System; public class PerformanceComparison : MonoBehaviour { void…