[Plib-cvs] plib/src/ssg ssgAnimTransform.cxx,NONE,1.1
Brought to you by:
sjbaker
From: Wolfram K. <wol...@us...> - 2004-10-29 22:30:43
|
Update of /cvsroot/plib/plib/src/ssg In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4306 Added Files: ssgAnimTransform.cxx Log Message: Implementing ssgAnimTransform --- NEW FILE: ssgAnimTransform.cxx --- /* PLIB - A Suite of Portable Game Libraries Copyright (C) 1998-2004 Steve Baker This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA For further information visit http://plib.sourceforge.net [...135 lines suppressed...] return ssgBranch::save ( fd ) ; } void ssgAnimTransform::print ( FILE *fd, char *indent, int how_much ) { if ( how_much == 0 ) return ; fprintf ( fd, "%sCurrent Bank = %f\n", indent, curr_bank ); fprintf ( fd, "%sMode = %d\n", indent, (int)mode ); if ( how_much > 1 ) transformations.print( fd, indent, how_much ); ssgBranch::print ( fd, indent, how_much ) ; } |