Esempio n. 1
0
 /// <summary>
 ///     Marks the constrained edge using the specified edge
 /// </summary>
 /// <param name="edge">The edge</param>
 public void MarkConstrainedEdge(DtSweepConstraint edge)
 {
     MarkConstrainedEdge(edge.P, edge.Q);
 }
Esempio n. 2
0
 /// <summary>
 ///     Describes whether this instance contains
 /// </summary>
 /// <param name="e">The </param>
 /// <returns>The bool</returns>
 public bool Contains(DtSweepConstraint e) => Contains(e.P) && Contains(e.Q);