Example #1
0
 /// <summary>
 /// Adds the specified position to the relation. Returns true if it was added, false if it was already present.
 /// </summary>
 public bool Set(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5)
 {
     return(Set(Position5.Create(p1, p2, p3, p4, p5)));
 }
Example #2
0
 /// <summary>
 /// Returns whether the relation contains the specified position.
 /// </summary>
 public bool Contains(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5)
 {
     return(Contains(Position5.Create(p1, p2, p3, p4, p5)));
 }