blob: 914dc0f1964a3845850ac536c6de1d819463b34f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
/* Project nGenEx
Destroyer Studios LLC
Copyright © 1997-2004. All Rights Reserved.
SUBSYSTEM: nGenEx.lib
FILE: Random.cpp
AUTHOR: John DiCamillo
OVERVIEW
========
Utility functions for generating random numbers and locations.
*/
#ifndef Random_h
#define Random_h
#include "Types.h"
#include "Geometry.h"
// +----------------------------------------------------------------------+
void RandomInit();
Point RandomDirection();
Point RandomPoint();
Vec3 RandomVector(double radius);
double Random(double min=0, double max=1);
int RandomIndex();
bool RandomChance(int wins=1, int tries=2);
int RandomSequence(int current, int range);
int RandomShuffle(int count);
// +----------------------------------------------------------------------+
#endif Random_h
|