mirror of
https://gitlab.ibr.cs.tu-bs.de/tschuber/ns-3-leo.git
synced 2025-06-09 02:23:57 +02:00
Update doxygen documentation
This commit is contained in:
parent
61b6fd7ea1
commit
f17ff6abc6
38 changed files with 1023 additions and 124 deletions
|
@ -21,12 +21,27 @@
|
|||
|
||||
#include "ns3/uinteger.h"
|
||||
|
||||
/**
|
||||
* \file
|
||||
* \ingroup leo
|
||||
* Declares Orbit
|
||||
*/
|
||||
|
||||
/**
|
||||
* \ingroup leo
|
||||
* \brief Orbit
|
||||
*/
|
||||
class Orbit {
|
||||
public:
|
||||
/// constructor
|
||||
Orbit (double a, double i, double p, double s) : alt (a), inc (i), planes (p), sats (s) {}
|
||||
/// Altitude
|
||||
double alt;
|
||||
/// Inclination
|
||||
double inc;
|
||||
/// Number of planes
|
||||
uint16_t planes;
|
||||
/// Number of satellites in plane
|
||||
uint16_t sats;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue