fCraft.Forester.MangroveTree.ShapeFunc C# (CSharp) Method

ShapeFunc() protected method

protected ShapeFunc ( int y ) : float
y int
return float
            protected override float ShapeFunc( int y )
            {
                float val = base.ShapeFunc( y );
                if ( val < 0 )
                    return -1;
                val *= 1.618f;
                return val;
            }
Forester.MangroveTree