Exemplo n.º 1
0
 public void When_intersection_allowed(string id, string op, bool lhit, bool inl, bool inr)
 {
     values[id] = CSGFigure.IntersectionAllowed(op, lhit, inl, inr);
 }
Exemplo n.º 2
0
 public void Given_csg(string id, string op, string f1, string f2)
 {
     figure[id] = new CSGFigure(op, figure[f1], figure[f2]);
 }