Advertisement
Guest User

Untitled

a guest
Aug 12th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. v.a(); Note: this is inside a different class file to the method
  2.  
  3. this comes up when as an error
  4.  
  5. Cannot invoke a() on the primitive type float
  6.  
  7. heres the method:
  8.  
  9. private void a(float af[][], int i)
  10. {
  11. float f1 = hy.c(af[i][0] * af[i][0] + af[i][1] * af[i][1] + af[i][2] * af[i][2]);
  12. af[i][0] /= f1;
  13. af[i][1] /= f1;
  14. af[i][2] /= f1;
  15. af[i][3] /= f1;
  16. }
  17.  
  18. do i just need to add paremeters to the invoke(v.a())?
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement