Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 6554 in orxonox.OLD


Ignore:
Timestamp:
Jan 18, 2006, 2:33:10 PM (18 years ago)
Author:
rennerc
Message:

debug quaternion sync

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/network/src/lib/coord/p_node.cc

    r6542 r6554  
    11761176    SYNCHELP_READ_FLOAT( f2 );
    11771177    SYNCHELP_READ_FLOAT( f3 );
     1178    PRINTF(0)("RCVD COOR: %f %f %f\n", f1, f2, f3);
    11781179    this->setRelCoor( f1, f2, f3 );
    11791180  }
     
    11851186    SYNCHELP_READ_FLOAT( f3 );
    11861187    SYNCHELP_READ_FLOAT( f4 );
     1188    PRINTF(0)("RCVD QUAT: %f %f %f %f\n", f1, f2, f3, f4);
    11871189    this->setRelDir( Quaternion( Vector(f2, f3, f4), f1 ) );
    11881190  }
     
    12251227  {
    12261228
    1227     PRINTF(0)("%f %f %f\n", coorx, coory, coorz);
     1229    PRINTF(0)("SEND COOR: %f %f %f\n", coorx, coory, coorz);
    12281230
    12291231    SYNCHELP_WRITE_FLOAT( this->relCoordinate.x );
     
    12391241  {
    12401242
    1241     PRINTF(0)("%f %f %f %f\n", rotw, rotx, roty, rotz);
     1243    PRINTF(0)("SEND QUAT: %f %f %f %f\n", rotw, rotx, roty, rotz);
    12421244
    12431245    SYNCHELP_WRITE_FLOAT( this->relDirection.w );
Note: See TracChangeset for help on using the changeset viewer.