示例#1
0
        /// <summary>
        /// Gets the instance.
        /// </summary>
        /// <returns></returns>
        public static ConvergencePlot3D GetInstance()
        {
            if (instance == null)
            {
                instance = new ConvergencePlot3D();
            }

            return instance;
        }
示例#2
0
 /// <summary>
 /// Handles the 1 event of the Window_Closed control.
 /// </summary>
 /// <param name="sender">The source of the event.</param>
 /// <param name="e">The <see cref="EventArgs" /> instance containing the event data.</param>
 private void Window_Closed_1(object sender, EventArgs e)
 {
     instance = null;
 }