コード例 #1
0
        private void Scale(object sender, EventArgs e)
        {
            double x_axis = (double)numericUpDown1.Value;
            double y_axis = (double)numericUpDown2.Value;
            double z_axis = (double)numericUpDown3.Value;

            tetrahedron.Apply(Transformation.Scale(x_axis, y_axis, z_axis));
            scenesRefresh();
        }