(actor)
| 430 | return isinstance(actor, carla.Vehicle) and int(actor.attributes['number_of_wheels']) == 2 |
| 431 | |
| 432 | def is_pedestrian(actor): |
| 433 | return isinstance(actor, carla.Walker) |
| 434 | |
| 435 | class SumoNetworkAgentPath: |
| 436 | def __init__(self, route_points, min_points, interval): |
no outgoing calls
no test coverage detected