コード例 #1
0
        public static float Radius(float w, float h, float a)
        {
            var p = Circles.Point(a);

            return((w * h) / Mathf.Sqrt(w * w * p.x * p.x + h * h * p.y * p.y));
        }