spaceconquest.Hex3D.Hex3D C# (CSharp) Method

Hex3D() public method

public Hex3D ( int xx, int yy, SolarSystem3D ss, Color c ) : System
xx int
yy int
ss SolarSystem3D
c Color
return System
        public Hex3D(int xx, int yy, SolarSystem3D ss, Color c)
        {
            defaultcolor = c;
            color = c;
            x = xx;
            y = yy;
            hexgrid = ss;
            boundsphere = new BoundingSphere(getCenter(), radius);
        }