示例#1
0
 /// <summary>
 /// Creates the sphere that is required
 /// </summary>
 public void Initialize(float radius, int repeatcount)
 {
     rad = radius;
     repeat = repeatcount;
     sphere = new Graphics.Shapes.Cube(radius, repeat);
 }
示例#2
0
        /// <summary>
        /// Creates the sphere that is required
        /// </summary>
        public override void Initialize()
        {
            cube = new Shapes.Cube(rad, repeat);

            base.Initialize();
        }
示例#3
0
 /// <summary>
 /// Creates the sphere that is required
 /// </summary>
 public void Initialize(float radius, int repeatcount)
 {
     rad    = radius;
     repeat = repeatcount;
     sphere = new Graphics.Shapes.Cube(radius, repeat);
 }
示例#4
0
        /// <summary>
        /// Creates the sphere that is required
        /// </summary>
        public override void Initialize()
        {
            cube = new Shapes.Cube(rad, repeat);

            base.Initialize();
        }