Advertisement
spamspam252

Untitled

Feb 3rd, 2015
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. if ((A2 > (2 * D1)) && (D2 > (2 * A1)))
  2. {
  3. if (P >= 5)
  4. fOut = 0.0;
  5. else
  6. if (P < 5)
  7. {
  8. x = A1 * 2;
  9. if (x > 100)
  10. x = 100;
  11.  
  12. y = D1 / 2;
  13. if (y < 1)
  14. y = 1;
  15.  
  16. fOut = coban(x, y, A2, D2, P);
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement