SuperImageEvolver.DNA.DNA C# (CSharp) Method

DNA() public method

public DNA ( DNA other ) : System
other DNA
return System
        public DNA(DNA other)
        {
            Shapes = new Shape[other.Shapes.Length];
            for (int i = 0; i < Shapes.Length; i++) {
                Shapes[i] = new Shape(other.Shapes[i]);
            }
            Divergence = other.Divergence;
        }

Same methods

DNA::DNA ( ) : System
DNA::DNA ( NBTag tag ) : System
DNA::DNA ( Stream stream, int shapes, int vertices ) : System