Advertisement
Guest User

Untitled

a guest
May 26th, 2015
261
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. if (((targetBlob.nx < myBlob.nx && targetBlob.nx < interx && interx < myBlob.nx) ||
  2. (targetBlob.nx > myBlob.nx && targetBlob.nx > interx && interx > myBlob.nx)) &&
  3. ((targetBlob.ny < myBlob.ny && targetBlob.ny < intery && intery < myBlob.ny) ||
  4. (targetBlob.ny > myBlob.ny && targetBlob.ny > intery && intery > myBlob.ny))){
  5. if(lineDistance(potential, pseudoblob) < potential.size * mult){
  6. result = false;
  7. }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement