Makefile: clean-all
[summerhack] / src / 3dengfx / libs / lib3ds / tcb.h
1 /* -*- c -*- */
2 #ifndef INCLUDED_LIB3DS_TCB_H
3 #define INCLUDED_LIB3DS_TCB_H
4 /*
5  * The 3D Studio File Format Library
6  * Copyright (C) 1996-2001 by J.E. Hoffmann <je-h@gmx.net>
7  * All rights reserved.
8  *
9  * This program is  free  software;  you can redistribute it and/or modify it
10  * under the terms of the  GNU Lesser General Public License  as published by 
11  * the  Free Software Foundation;  either version 2.1 of the License,  or (at 
12  * your option) any later version.
13  *
14  * This  program  is  distributed in  the  hope that it will  be useful,  but
15  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
16  * or  FITNESS FOR A  PARTICULAR PURPOSE.  See the  GNU Lesser General Public  
17  * License for more details.
18  *
19  * You should  have received  a copy of the GNU Lesser General Public License
20  * along with  this program;  if not, write to the  Free Software Foundation,
21  * Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22  *
23  * $Id: tcb.h,v 1.9 2004/12/31 16:17:15 reed Exp $
24  */
25
26 #ifndef INCLUDED_LIB3DS_TYPES_H
27 #include <lib3ds/types.h>
28 #endif
29
30 #ifdef __cplusplus
31 extern "C" {
32 #endif
33
34 typedef enum _Lib3dsTcbFlags{
35   LIB3DS_USE_TENSION    =0x0001,
36   LIB3DS_USE_CONTINUITY =0x0002,
37   LIB3DS_USE_BIAS       =0x0004,
38   LIB3DS_USE_EASE_TO    =0x0008,
39   LIB3DS_USE_EASE_FROM  =0x0010
40 } Lib3dsTcbFlags;
41
42 typedef struct _Lib3dsTcb {
43     Lib3dsIntd frame;
44     Lib3dsWord flags;
45     Lib3dsFloat tens;
46     Lib3dsFloat cont;
47     Lib3dsFloat bias;
48     Lib3dsFloat ease_to;
49     Lib3dsFloat ease_from;
50 } Lib3dsTcb;
51
52 extern LIB3DSAPI void lib3ds_tcb(Lib3dsTcb *p, Lib3dsTcb *pc, Lib3dsTcb *c,
53   Lib3dsTcb *nc, Lib3dsTcb *n, Lib3dsFloat *ksm, Lib3dsFloat *ksp,
54   Lib3dsFloat *kdm, Lib3dsFloat *kdp);
55 extern LIB3DSAPI Lib3dsBool lib3ds_tcb_read(Lib3dsTcb *tcb, Lib3dsIo *io);
56 extern LIB3DSAPI Lib3dsBool lib3ds_tcb_write(Lib3dsTcb *tcb, Lib3dsIo *io);
57
58 #ifdef __cplusplus
59 }
60 #endif
61 #endif
62