g1blendingf.h

Go to the documentation of this file.
00001 
00002 /* ///////////////////////////////////////////////////////////////////////// */
00003 /* This file is a part of the BSTools package                                */
00004 /* written by Przemyslaw Kiciak                                              */
00005 /* ///////////////////////////////////////////////////////////////////////// */
00006 /* (C) Copyright by Przemyslaw Kiciak, 2010, 2013                            */
00007 /* this package is distributed under the terms of the                        */
00008 /* Lesser GNU Public License, see the file COPYING.LIB                       */
00009 /* ///////////////////////////////////////////////////////////////////////// */
00010 /* this file was written by Mateusz Markowski                                */
00011 /* and modified by Przemyslaw Kiciak                                         */
00012 
00013 #ifndef G1BLENDINGF_H
00014 #define G1BLENDINGF_H
00015 
00016 #ifndef PKVARIA_H
00017 #include "pkvaria.h"
00018 #endif
00019 #ifndef PKNUM_H
00020 #include "pknum.h"
00021 #endif
00022 #ifndef PKGEOM_H
00023 #include "pkgeom.h"
00024 #endif
00025 #ifndef MULTIBS_H
00026 #include "multibs.h"
00027 #endif
00028 
00029 #ifdef __cplusplus
00030 extern "C" {
00031 #endif
00032 
00033 
00034 boolean g1bl_SetupBiharmAMatrixf ( int lastknotu, int lastknotv,
00035                                int *n, int **prof, float **Amat, float ***arow );
00036 boolean g1bl_SetupBiharmRHSf ( int lastknotu, int lastknotv,
00037                                int spdimen, int pitch, const float *cpoints,
00038                                float *rhs );
00039 
00040 boolean g1bl_SetupClosedBiharmAMatrixf ( int lastknotu, int lastknotv,
00041                                int *n, int **prof, float **Amat, float ***arow );
00042 boolean g1bl_SetupClosedBiharmRHSf ( int lastknotu, int lastknotv,
00043                                int spdimen, int pitch, const float *cpoints,
00044                                float *rhs );
00045 
00046 #ifdef __cplusplus
00047 }
00048 #endif
00049 
00050 #endif /*G1BLENDINGF_H*/
00051