ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/random.h
Revision: 2.2
Committed: Mon Sep 21 12:02:27 1992 UTC (31 years, 7 months ago) by greg
Content type: text/plain
Branch: MAIN
Changes since 2.1: +14 -6 lines
Log Message:
Changes for PC port

File Contents

# Content
1 /* Copyright (c) 1992 Regents of the University of California */
2
3 /* SCCSid "$SunId$ LBL" */
4
5 /*
6 * random.h - header file for random(3) and urand() function.
7 *
8 * 10/1/85
9 */
10
11 #ifdef MSDOS
12
13 #define random rand
14
15 #define frandom() (rand()*(1./32768.))
16
17 #else
18 #ifdef BSD
19
20 extern long random();
21
22 #define frandom() (random()*(1./2147483648.))
23
24 #else
25
26 extern long lrand48();
27 extern double drand48();
28
29 #define random() lrand48()
30 #define frandom() drand48()
31
32 #endif
33 #endif
34
35 #define urand(i) ((urperm[(i)&urmask]+frandom())/(urmask+1))
36
37 extern short *urperm;
38 extern int urmask;