Daedalus (PY2026)
Codebase for the Husky Robotics 2025-2026 rover Daedalus
Loading...
Searching...
No Matches
random.h
1#pragma once
2
3namespace util {
4
15double stdn(int thread_id);
16
22long getNormalSeed();
23
24} // namespace util
A collection of utility functions and classes with common use-cases.
Definition SwerveController.cpp:145
double stdn(int thread_id)
Sample from the standard normal distribution.
Definition random.cpp:24
long getNormalSeed()
Get the random seed used for util::stdn().
Definition random.cpp:20