/*------------------------->  Sather - configfile  <-------------------------*/
/* Copyright (C) 2000 by K Hopper, University of Waikato, New Zealand        */
/* This file is part of the GNU Sather library. It is free software; you may */
/* redistribute  and/or modify it under the terms of the GNU Library General */
/* Public  License (LGPL)  as published  by the  Free  Software  Foundation; */
/* either version 2 of the license, or (at your option) any later version.   */
/* This  library  is distributed  in the  hope that it will  be  useful, but */
/* WITHOUT ANY WARRANTY without even the implied warranty of MERCHANTABILITY */
/* or FITNESS FOR A PARTICULAR PURPOSE. See Doc/LGPL for more details.       */
/* The license text is also available from:  Free Software Foundation, Inc., */
/* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA                     */
/*------------>  Please email comments to <bug-sather@gnu.org>  <------------*/

#ifndef ANGLED_CONFIG
#define ANGLED_CONFIG

#ifdef PP
#undef PP
#endif

#ifdef VSTD
#undef VSTD
#endif

#ifdef IM
#undef IM
#endif

#define PP    no_pre,no_post
#define VSTD  var "@r $$;"
#define IM    declare "#include <math.h>"

ANGLED_FLTD:         PP,exec "(FLTD)$0";
FLTD_ANGLED:         PP,exec "(ANGLED)$1";
ASIN_ANGLED:         PP,VSTD,IM,exec "$$=asin($1);" "$$";
ACOS_ANGLED:         PP,VSTD,IM,exec "$$=acos($1);" "$$";
ATAN_ANGLED:         PP,VSTD,IM,exec "$$=atan($1);" "$$";
ATAN2_ANGLED:        PP,VSTD,IM,exec "$$=atan2($1,$2);" "$$";
ANGLED_FLTD_SIN:     PP,VSTD,IM,exec "$$=sin($0);" "$$";
ANGLED_FLTD_COS:     PP,VSTD,IM,exec "$$=cos($0);" "$$";
ANGLED_FLTD_TAN:     PP,VSTD,IM,exec "$$=tan($0);" "$$";
ANGLED_FLTD_SINCOS:  PP,IM,exec "sincos($0,&$1,&$2);";

#endif