예제 #1
0
 public static void DrawSolidSphere(Sphere3 sphere, Color colour)
 {
     DrawSolidSphere(sphere.Center, sphere.Radius, colour);
 }
예제 #2
0
 public static void DrawSolidSphere(Sphere3 sphere)
 {
     DrawSolidSphere(sphere.Center, sphere.Radius, Color.white);
 }