천호석
2022-06-17 4de9ea98e13449174aa2cd09c8351fc0e978f44a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
namespace SHARP_CLAS_UI
{
    public class Process_Draw_Info
    {
        #region Property
        public bool Draw { get; set; }
 
        public float Start_X { get; set; }
 
        public float End_X { get; set; }
 
        public float Start_Y { get; set; }
 
        public float End_Y { get; set; }
 
        public float Distance { get; set; }
 
        public int Repeat { get; set; }
 
        public bool Reverse { get; set; }
        #endregion
 
        #region Construct
        public Process_Draw_Info()
        {
            Draw = false;
            Reverse = false;
            Start_X = 0;
            End_X = 0;
            Start_Y = 0;
            End_Y = 0;
            Distance = 0;
            Repeat = 0;
        }
        #endregion
 
        #region Function
        public Process_Draw_Info Clone()
        {
            Process_Draw_Info info = new Process_Draw_Info();
 
            info.Draw = this.Draw;
            info.Reverse = this.Reverse;
            info.Start_X = this.Start_X;
            info.End_X = this.End_X;
            info.Start_Y = this.Start_Y;
            info.End_Y = this.End_Y;
            info.Distance = this.Distance;
            info.Repeat = this.Repeat;
 
            return info;
        }
        #endregion
    }
}