Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
net.cpp AND what on earth is vector<string>::const_ite
06-12-2006, 08:09 PM,
#13
 
It looks to me like you've got a few problems. First of all, you're instantiating local variables accel_sum and rotation_sum (which will be set to zero upon creation) right before you either print out their values or increment them. Right after that, they'll be destroyed and the next time through the loop you'll create new local variables accel_sum and rotation_sum (which will be set to zero upon creation), etc. I suggest reading up on the way scope works in C++. Here's a random link from google: http://cplus.about.com/od/beginnerctutor...01902a.htm

Also, "rotation_sum=accel_sum+..." should be "rotation_sum=rotation_sum+..."
Reply


Messages In This Thread
[No subject] - by thelusiv - 06-05-2006, 05:41 PM
[No subject] - by joevenzon_phpbb2_import3 - 06-05-2006, 09:44 PM
[No subject] - by thelusiv - 06-06-2006, 12:36 AM
[No subject] - by nael - 06-06-2006, 09:41 AM
[No subject] - by thelusiv - 06-06-2006, 12:49 PM
[No subject] - by joevenzon_phpbb2_import3 - 06-06-2006, 08:02 PM
[No subject] - by nael - 06-07-2006, 01:51 PM
[No subject] - by joevenzon_phpbb2_import3 - 06-07-2006, 08:52 PM
[No subject] - by matthew_i - 06-11-2006, 03:12 PM
[No subject] - by nael - 06-12-2006, 09:30 AM
[No subject] - by joevenzon_phpbb2_import3 - 06-12-2006, 08:09 PM
[No subject] - by nael - 06-13-2006, 10:59 AM
[No subject] - by thelusiv - 06-13-2006, 02:02 PM
[No subject] - by nael - 06-14-2006, 01:21 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)