Changeset 1348 for code/branches
- Timestamp:
- May 21, 2008, 9:05:12 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/input/src/core/InputHandler.cc
r1347 r1348 583 583 { 584 584 deriveTime_ = 0.0f; 585 CCOUT(3) << "mouse abs: ";585 //CCOUT(3) << "mouse abs: "; 586 586 for (int i = 0; i < 2; i++) 587 587 { … … 596 596 halfAxes_[2*i + 1].absVal_ = -mouseRelative_[i] * derivePeriod_ / 500 * mouseSensitivity_; 597 597 } 598 COUT(3) << mouseRelative_[i] << " | ";598 //COUT(3) << mouseRelative_[i] << " | "; 599 599 mouseRelative_[i] = 0; 600 600 } 601 COUT(3) << std::endl;601 //COUT(3) << std::endl; 602 602 } 603 603 else … … 654 654 int rel[] = { rel_.x, -rel_.y }; 655 655 656 COUT(3) << rel[0] << " | " << rel[1] << std::endl;656 //COUT(3) << rel[0] << " | " << rel[1] << std::endl; 657 657 658 658 for (int i = 0; i < 2; i++) … … 709 709 void KeyBinder::mouseScrolled(int abs, int rel) 710 710 { 711 COUT(3) << mouseButtons_[8].name_ << " " << abs << " | " << rel << std::endl;711 //COUT(3) << mouseButtons_[8].name_ << " " << abs << " | " << rel << std::endl; 712 712 713 713 if (rel > 0)
Note: See TracChangeset
for help on using the changeset viewer.