Exemple #1
0
 public Hexagon(Normal hexagon1, Normal hexagon2, Normal hexagon3)
 {
     this.AllowPigment = false;
     this.Hexagon1     = hexagon1;
     this.Hexagon2     = hexagon2;
     this.Hexagon3     = hexagon3;
 }
Exemple #2
0
 public Hexagon(Pigment hexagon1, Pigment hexagon2, Pigment hexagon3)
 {
     this.AllowNormal = false;
     this.Hexagon1    = hexagon1;
     this.Hexagon2    = hexagon2;
     this.Hexagon3    = hexagon3;
 }
Exemple #3
0
 public Square(Normal item1, Normal item2, Normal item3, Normal item4)
 {
     this.AllowPigment = false;
     this.Item1        = item1;
     this.Item2        = item2;
     this.Item3        = item3;
     this.Item4        = item4;
 }
Exemple #4
0
 public Square(Pigment item1, Pigment item2, Pigment item3, Pigment item4)
 {
     this.AllowNormal = false;
     this.Item1       = item1;
     this.Item2       = item2;
     this.Item3       = item3;
     this.Item4       = item4;
 }
Exemple #5
0
 public Cubic(Normal xFront, Normal yFront, Normal zFront, Normal xBack,
              Normal yBack, Normal zBack)
 {
     this.AllowPigment = false;
     this.XFront       = xFront;
     this.YFront       = yFront;
     this.ZFront       = zFront;
     this.XBack        = xBack;
     this.YBack        = yBack;
     this.ZBack        = zBack;
 }
Exemple #6
0
 public Cubic(Pigment xFront, Pigment yFront, Pigment zFront, Pigment xBack,
              Pigment yBack, Pigment zBack)
 {
     this.AllowNormal = false;
     this.XFront      = xFront;
     this.YFront      = yFront;
     this.ZFront      = zFront;
     this.XBack       = xBack;
     this.YBack       = yBack;
     this.ZBack       = zBack;
 }
Exemple #7
0
 public Checker(Normal check1, Normal check2)
 {
     this.AllowPigment = false;
     this.Check1       = check1;
     this.Check2       = check2;
 }
Exemple #8
0
 public Checker(Pigment check1, Pigment check2)
 {
     this.AllowNormal = false;
     this.Check1      = check1;
     this.Check2      = check2;
 }