Ejemplo n.º 1
0
 public static void DrawSolidSphere(Sphere3 sphere, Color colour)
 {
     DrawSolidSphere(sphere.Center, sphere.Radius, colour);
 }
Ejemplo n.º 2
0
 public static void DrawSolidSphere(Sphere3 sphere)
 {
     DrawSolidSphere(sphere.Center, sphere.Radius, Color.white);
 }