NPlot.LogAxis.DoClone C# (CSharp) Method

DoClone() protected method

Helper method for Clone (actual implementation)
protected DoClone ( LogAxis b, LogAxis a ) : void
b LogAxis The cloned object.
a LogAxis The original object to clone.
return void
        protected void DoClone(LogAxis b, LogAxis a)
        {
            Axis.DoClone(b,a);
            // add specific elemtents of the class for the deep copy of the object
            a.numberSmallTicks_ = b.numberSmallTicks_;
            a.largeTickValue_ = b.largeTickValue_;
            a.largeTickStep_ = b.largeTickStep_;
        }