menu
three_dart package
documentation
three3d/math/math_utils.dart
MathUtils
randInt static method
randInt static method
dark_mode
light_mode
randInt
static method
int
randInt
(
int
low
,
int
high
)
Implementation
static int randInt(int low, int high) { return low + Math.floor(Math.random() * (high - low + 1)); }
three_dart package
documentation
three3d/math/math_utils
MathUtils
randInt static method
MathUtils class