Subversion Repositories filter_foundry

Rev

Rev 170 | Rev 192 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

  1. /*
  2.     This file is part of "Filter Foundry", a filter plugin for Adobe Photoshop
  3.     Copyright (C) 2003-2019 Toby Thain, toby@telegraphics.com.au
  4.  
  5.     This program is free software; you can redistribute it and/or modify
  6.     it under the terms of the GNU General Public License as published by
  7.     the Free Software Foundation; either version 2 of the License, or
  8.     (at your option) any later version.
  9.  
  10.     This program is distributed in the hope that it will be useful,
  11.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.     GNU General Public License for more details.
  14.  
  15.     You should have received a copy of the GNU General Public License
  16.     along with this program; if not, write to the Free Software
  17.     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  18. */
  19.  
  20. #include <math.h>
  21.  
  22.  
  23. #ifndef M_PI
  24.         #define M_PI 3.14159265358979323846264338327
  25. #endif
  26.  
  27.  
  28. #include "symtab.h"
  29.  
  30. enum{ COSTABSIZE=1024,TANTABSIZE=512 };
  31.  
  32. void init_trigtab();
  33.  
  34. extern double costab[],tantab[];
  35.  
  36. #define DEG2RAD(x) ((x)*M_PI/180.)
  37. #define RAD2DEG(x) ((x)*180./M_PI)
  38.  
  39. /* [trig functions return] an integer between -512 and 512, inclusive (Windows)
  40.         or -1024 and 1024, inclusive (Mac OS) */
  41. #ifdef WIN_ENV
  42. #define TRIGAMP 512
  43. #else
  44. #define TRIGAMP 1024
  45. #endif
  46. #define FFANGLE(v) ((v)*M_PI/512.)
  47. #define TO_FFANGLE(v) ((v)*512./M_PI)
  48.  
  49. #define INITRANDSEED() srand(691204)
  50.  
  51. value_type ff_src(value_type x,value_type y,value_type z);
  52. value_type ff_rad(value_type d,value_type m,value_type z);
  53. value_type ff_ctl(value_type i);
  54. value_type ff_val(value_type i,value_type a,value_type b);
  55. value_type ff_map(value_type i,value_type n);
  56. value_type ff_min(value_type a,value_type b);
  57. value_type ff_max(value_type a,value_type b);
  58. value_type ff_abs(value_type a);
  59. value_type ff_add(value_type a,value_type b,value_type c);
  60. value_type ff_sub(value_type a,value_type b,value_type c);
  61. value_type ff_dif(value_type a,value_type b);
  62. value_type ff_rnd(value_type a,value_type b);
  63. value_type ff_mix(value_type a,value_type b,value_type n,value_type d);
  64. value_type ff_scl(value_type a,value_type il,value_type ih,
  65.                                   value_type ol,value_type oh);
  66. value_type ff_sqr(value_type x);
  67. value_type ff_sin(value_type x);
  68. value_type ff_cos(value_type x);
  69. value_type ff_tan(value_type x);
  70. value_type ff_r2x(value_type d,value_type m);
  71. value_type ff_r2y(value_type d,value_type m);
  72. value_type ff_c2d(value_type d,value_type m);
  73. value_type ff_c2m(value_type d,value_type m);
  74. value_type ff_get(value_type i);
  75. value_type ff_put(value_type v,value_type i);
  76. value_type ff_cnv(value_type m11,value_type m12,value_type m13,
  77.                                   value_type m21,value_type m22,value_type m23,
  78.                                   value_type m31,value_type m32,value_type m33,
  79.                                   value_type d );
  80. value_type ff_rst(value_type seed);
  81.