Advertisement
Guest User

Untitled

a guest
Apr 20th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. int leftJoyVerify(){
  2. static int count;
  3.  
  4. if(((Controller1.Axis4.value()*Controller1.Axis4.value())/37.5)+37.5<=Controller1.Axis3.value())
  5. count++;
  6. if((-(Controller1.Axis4.value()*Controller1.Axis4.value())/37.5)-37.5<=Controller1.Axis3.value())
  7. count++;
  8. if(((Controller1.Axis3.value()*Controller1.Axis3.value())/37.5)+37.5<=Controller1.Axis4.value())
  9. count++;
  10. if((-(Controller1.Axis3.value()*Controller1.Axis3.value())/37.5)-37.5<=Controller1.Axis4.value())
  11. count++;
  12.  
  13. if(count==1){
  14. return 1;
  15. }else{
  16. return 0;
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement