00001 /* 00002 /-------------------------------------------------------------------- 00003 | 00004 | $Id: plhsvconvert.h,v 1.1 2004/05/21 21:02:53 maxx Exp $ 00005 | 00006 | Copyright (c) 1996-1998 Ulrich von Zadow 00007 | 00008 \-------------------------------------------------------------------- 00009 */ 00010 #ifndef HSVCONVERT_H 00011 #define HSVCONVERT_H 00012 00013 void fp_rgb_to_hsv (double *r, 00014 double *g, 00015 double *b); 00016 00017 void fp_hsv_to_rgb (double *h, 00018 double *s, 00019 double *v); 00020 00021 #endif 00022 00023 /* 00024 /-------------------------------------------------------------------- 00025 | 00026 | $Log: plhsvconvert.h,v $ 00027 | Revision 1.1 2004/05/21 21:02:53 maxx 00028 | Initial Version of vuVolume, moderatly changed to make it compile on my windows and linux machine. 00029 | 00030 | Revision 1.1 2002/11/13 01:59:48 mspindle 00031 | *** empty log message *** 00032 | 00033 | Revision 1.1 2001/09/16 19:03:23 uzadow 00034 | Added global name prefix PL, changed most filenames. 00035 | 00036 | Revision 1.1 2000/10/12 21:56:12 uzadow 00037 | Moved local functions from VideoInvertFilter.cpp to 00038 | hsvconvert.* 00039 | 00040 | 00041 | 00042 \-------------------------------------------------------------------- 00043 */