Beispiel #1
0
 public Form1()
 {
     m_engine = null;
     InitializeComponent();
 }
Beispiel #2
0
 private void LoadInitial()
 {
     if (textBoxInitial.Text == String.Empty)
     {
         m_engine = new Stippler(Decimal.ToInt32(numericUpDownNumPoints.Value), textBoxSourceImage.Text);
     }
     else
     {
         m_engine = new Stippler(textBoxInitial.Text, textBoxSourceImage.Text);
     }
 }