00001 00002 /* ///////////////////////////////////////////////////////////////////////// */ 00003 /* This file is a part of the BSTools package */ 00004 /* written by Przemyslaw Kiciak */ 00005 /* ///////////////////////////////////////////////////////////////////////// */ 00006 /* (C) Copyright by Przemyslaw Kiciak, 2005, 2009 */ 00007 /* this package is distributed under the terms of the */ 00008 /* Lesser GNU Public License, see the file COPYING.LIB */ 00009 /* ///////////////////////////////////////////////////////////////////////// */ 00010 00011 /* Header file for the libpkgeom library of C procedures - */ 00012 /* finding convex hull */ 00013 00014 #ifndef CONVH_H 00015 #define CONVH_H 00016 00017 #ifndef PKGEOM_H 00018 #include "pkgeom.h" 00019 #endif 00020 00021 #ifdef __cplusplus 00022 extern "C" { 00023 #endif 00024 00025 void FindConvexHull2f ( int *n, point2f *p ); 00026 void FindConvexHull2d ( int *n, point2d *p ); 00027 00028 #ifdef __cplusplus 00029 } 00030 #endif 00031 00032 #endif /*CONVH_H*/ 00033