[Plib-cvs] plib/doc/js index.html,1.6,1.7
Brought to you by:
sjbaker
From: <ud...@us...> - 2002-04-17 22:02:50
|
Update of /cvsroot/plib/plib/doc/js In directory usw-pr-cvs1:/tmp/cvs-serv25974 Modified Files: index.html Log Message: Updated JS documentation Index: index.html =================================================================== RCS file: /cvsroot/plib/plib/doc/js/index.html,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- index.html 24 Mar 2002 01:21:39 -0000 1.6 +++ index.html 17 Apr 2002 22:02:48 -0000 1.7 @@ -45,23 +45,23 @@ jsJoystick ( int id = 0 ) ; ~jsJoystick () ; - int getNumAxes () ; - int notWorking () ; + int getNumAxes () const ; + int notWorking () const ; void setError () ; - float getDeadBand ( int axis ) ; + float getDeadBand ( int axis ) const ; void setDeadBand ( int axis, float db ) ; - float getSaturation ( int axis ) ; + float getSaturation ( int axis ) const ; void setSaturation ( int axis, float st ) ; void setMinRange ( float *axes ) ; void setMaxRange ( float *axes ) ; void setCenter ( float *axes ) ; - void getMinRange ( float *axes ) ; - void getMaxRange ( float *axes ) ; - void getCenter ( float *axes ) ; + void getMinRange ( float *axes ) const ; + void getMaxRange ( float *axes ) const ; + void getCenter ( float *axes ) const ; void read ( int *buttons, float *axes ) ; void rawRead ( int *buttons, float *axes ) ; |