... | ... | @@ -4,6 +4,7 @@ title: Home |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
**common** is an ever-evolving project which aims to gather all relevant data for all departments to use. The associated common repository shall be included as a submodule in all projects which require its data.
|
|
|
|
|
|
The main pillar of common is **consistency**: Each step in which data is manipulated is a potential point of failure. For this reason, we try to avoid parsing between different data structures. When implementing something new, it is highly encouraged to follow specific patterns (e.g. store all vectors as colums) to avoid headaches.
|
... | ... | @@ -28,6 +29,8 @@ myRocket = Rocket(myMission); |
|
|
```
|
|
|
Note that
|
|
|
- `myMission` and `myRocket` are variables (istances of classes) and should be named with **camelCase**
|
|
|
- Rocket and Mission are classes and are named using **PascalCase**
|
|
|
- `Rocket` and `Mission` are classes and are named using **PascalCase**
|
|
|
|
|
|
After happily making changes, you can push these same changes on `my-branch`, which is in **kebab-case**
|
|
|
|
|
|
## Useful links |
|
|
\ No newline at end of file |