コード例 #1
0
 internal override bool RMotion(NodeList <string> inputNodeList)
 {
     if (inputNodeList.Contains(apex.FindGraphNode()))
     {
         return(true);
     }
     else
     {
         return(false);
     }
 }
コード例 #2
0
ファイル: DependentCircle.cs プロジェクト: Neolyss/handwaver
 private bool checkForPointsInNodeList(NodeList <string> nodeList)
 {
     if (nodeList.Contains(center.FindGraphNode()) && (center.Position3 != centerPos))
     {
         return(true);
     }
     if (nodeList.Contains(edge.FindGraphNode()) && (edge.Position3 != edgePos))
     {
         return(true);
     }
     return(false);
 }