| 426 | return *this; |
| 427 | } |
| 428 | IC SelfRef random_point(const Self& BoxSize, CRandom& R = ::Random) |
| 429 | { |
| 430 | x = R.randFs(BoxSize.x); |
| 431 | y = R.randFs(BoxSize.y); |
| 432 | z = R.randFs(BoxSize.z); |
| 433 | return *this; |
| 434 | } |
| 435 | IC SelfRef random_point(T r, CRandom& R = ::Random) |
| 436 | { |
| 437 | random_dir(R); |
no test coverage detected