00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef MAGICKCORE_GEM_H
00019 #define MAGICKCORE_GEM_H
00020
00021 #include "MagickCore/fx.h"
00022 #include "MagickCore/random_.h"
00023
00024 #if defined(__cplusplus) || defined(c_plusplus)
00025 extern "C" {
00026 #endif
00027
00028 extern MagickExport double
00029 ExpandAffine(const AffineMatrix *);
00030
00031 extern MagickExport void
00032 ConvertHSLToRGB(const double,const double,const double,double *,double *,
00033 double *),
00034 ConvertRGBToHSL(const double,const double,const double,double *,double *,
00035 double *);
00036
00037 #if defined(__cplusplus) || defined(c_plusplus)
00038 }
00039 #endif
00040
00041 #endif