2018-09-18 01:46:10 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
class Restrictions:
|
|
|
|
|
|
|
|
def __init__(self,restrictions_msg):
|
2018-09-18 02:29:14 +02:00
|
|
|
self.distance = restrictions_msg.distance.data
|
|
|
|
self.linear_velocity = restrictions_msg.linear_velocity.data
|
|
|
|
self.angular_velocity = restrictions_msg.angular_velocity.data
|