Guest User

Untitled

a guest
Jun 21st, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. public void MoveAll()
  2. {
  3. const double dt = 0.1d;
  4. foreach (Node n in this.Values)
  5. {
  6. if (n == this.lockedNode)
  7. {
  8. continue;
  9. }
  10. // 以降は元のままなので省略
  11. }
  12. }
Add Comment
Please, Sign In to add comment