|
Panda3D
|
Public Member Functions | |
| def | __init__ |
| def | choice |
| def | randint |
| def | random |
| def | randrange |
| def | shuffle |
Static Public Attributes | |
| notify = \ | |
| def __init__ | ( | self, | |
| seed | |||
| ) |
seed must be an integer or another RandomNumGen
| def choice | ( | self, | |
| seq | |||
| ) |
returns a random element from seq
| def randint | ( | self, | |
| a, | |||
| b | |||
| ) |
returns integer in [a, b]
| def random | ( | self | ) |
returns random float in [0.0, 1.0)
| def randrange | ( | self, | |
| start, | |||
stop = None, |
|||
step = 1 |
|||
| ) |
randrange([start,] stop[, step]) same as choice(range(start, stop[, step])) without construction of a list
| def shuffle | ( | self, | |
| x | |||
| ) |
randomly shuffles x in-place
notify = \ [static] |
1.7.3