mirror of
https://github.com/azaion/gps-denied-onboard.git
synced 2026-06-21 22:21:13 +00:00
0c8f186598
docs -> _docs
9 lines
142 B
Python
9 lines
142 B
Python
from pydantic import BaseModel
|
|
from .gps_point import GPSPoint
|
|
|
|
|
|
class Polygon(BaseModel):
|
|
north_west: GPSPoint
|
|
south_east: GPSPoint
|
|
|