Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • sasmodels/kernel_header.c

    r1e7b0db0 rb7e8b94  
    146146inline double square(double x) { return x*x; } 
    147147inline double cube(double x) { return x*x*x; } 
    148 inline double sas_sinx_x(double x) { return x==0 ? 1.0 : sin(x)/x; } 
     148inline double sinc(double x) { return x==0 ? 1.0 : sin(x)/x; } 
    149149 
    150150#if 1 
     151//think cos(theta) should be sin(theta) in new coords, RKH 11Jan2017 
    151152#define ORIENT_SYMMETRIC(qx, qy, theta, phi, q, sn, cn) do { \ 
    152153    SINCOS(phi*M_PI_180, sn, cn); \ 
    153154    q = sqrt(qx*qx + qy*qy); \ 
    154     cn  = (q==0. ? 1.0 : (cn*qx + sn*qy)/q * cos(theta*M_PI_180));  \ 
     155    cn  = (q==0. ? 1.0 : (cn*qx + sn*qy)/q * sin(theta*M_PI_180));  \ 
    155156    sn = sqrt(1 - cn*cn); \ 
    156157    } while (0) 
Note: See TracChangeset for help on using the changeset viewer.