Skip to content

Commit

Permalink
function to install is implemented
Browse files Browse the repository at this point in the history
  • Loading branch information
ShisatoYano committed Feb 18, 2025
1 parent 6907f9b commit 6e186af
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions doc/3_sensor_models/3_3_sensors.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,16 @@ class Sensors:
"""

self.lidar = lidar
```

## 3.3.2 Installation
A function to install each sensors is implemented to compute the global position coordinate on the vehicle. It is computed only when the object of LiDAR class is given to the constructor.
```python
def install(self, state):
"""
Function to calculate each sensor's installation position on vehicle
state: vehicle's state object
"""

if self.lidar: self.lidar.install(state)
```

0 comments on commit 6e186af

Please sign in to comment.