mirror of
https://github.com/vlang/v.git
synced 2025-09-15 07:22:27 +03:00
rand: simplify rand.PRNG, move to optional types for error handling (#13570)
This commit is contained in:
parent
5c0b7b0d05
commit
114a341f5f
49 changed files with 609 additions and 1586 deletions
|
@ -18,7 +18,7 @@ pub fn (vector Vector) mult(scalar f32) Vector {
|
|||
}
|
||||
|
||||
pub fn random_vector_in_circle() Vector {
|
||||
theta := rand.f32n(2 * math.pi)
|
||||
theta := rand.f32n(2 * math.pi) or { 0 }
|
||||
y := rand.f32()
|
||||
|
||||
return Vector{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue