View Single Post
  #4   Spotlight this post!  
Unread 06-02-2005, 11:16
Ryan M. Ryan M. is offline
Programming User
FRC #1317 (Digital Fusion)
Team Role: Programmer
 
Join Date: Jan 2004
Rookie Year: 2004
Location: Ohio
Posts: 1,508
Ryan M. has much to be proud ofRyan M. has much to be proud ofRyan M. has much to be proud ofRyan M. has much to be proud ofRyan M. has much to be proud ofRyan M. has much to be proud ofRyan M. has much to be proud ofRyan M. has much to be proud ofRyan M. has much to be proud of
Re: "round" problems

If it's in the math library, you have to include the header file for it. I don't remember what the library's name actually is right now, but you'll have something like this:
Code:
#include <mathlib.h>
near the top of the file where you're trying to call the function from.

EDIT: Looking it up, it's math.h, so you'll have:
Code:
#include <math.h>
Hope that helps
__________________