예제 #1
0
 public Union(Hitable o1, Hitable o2)
 {
     O1 = o1;
     O2 = o2;
 }
예제 #2
0
 public void AddSubstraction(Hitable hitable) => Substraction.Add(hitable);
예제 #3
0
 public Intersect(Hitable o1, Hitable o2)
 {
     O1 = o1;
     O2 = o2;
 }
예제 #4
0
 public Substract(Hitable minuend, params Hitable[] substraction)
 {
     Minuend      = minuend;
     Substraction = substraction.ToList();
 }
예제 #5
0
 public void Add(Hitable item) => List.Add(item);