Beispiel #1
0
		/// <summary>
		/// Copy constructor of a waterfall plot style.
		/// </summary>
		/// <param name="from">The waterfall plot style to copy from.</param>
		public WaterfallTransform(WaterfallTransform from)
		{
			this._scaleXInc = from._scaleXInc;
			this._scaleYInc = from._scaleYInc;
			this._useClipping = from._useClipping;

			this._xinc = from._xinc;
			this._yinc = from._yinc;
		}