Example #1
0
        public void transformation()
        {
            TransformationsForm trans_form = new TransformationsForm();

            trans_form.working_on = this.opened_image;
            trans_form.ShowDialog(this);
            this.opened_image = trans_form.working_on;
            set_new_image();
        }
Example #2
0
        private void geometricTransformationToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Form active_child = this.ActiveMdiChild;
            if (active_child != null)
            {
                TransformationsForm trans_form = new TransformationsForm();
                trans_form.ShowDialog(this);

                ((ICommon)this.ActiveMdiChild).set_new_image();

            }
        }
Example #3
0
 public void transformation()
 {
     TransformationsForm trans_form = new TransformationsForm();
     trans_form.working_on = this.opened_image;
     trans_form.ShowDialog(this);
     this.opened_image = trans_form.working_on;
     set_new_image();
 }