mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-07-03 12:32:06 +08:00
28 lines
749 B
Python
28 lines
749 B
Python
"""Utilities for reading and writing FlatBuffer assets."""
|
|
|
|
from .polygons import (
|
|
flatten_polygon_coords,
|
|
reshape_to_polygon_coords,
|
|
get_coordinate_path,
|
|
write_polygon_collection_flatbuffer,
|
|
get_polygon_collection,
|
|
read_polygon_array_from_binary,
|
|
)
|
|
from .hybrid_shortcuts import (
|
|
get_hybrid_shortcut_file_path,
|
|
write_hybrid_shortcuts_flatbuffers,
|
|
read_hybrid_shortcuts_binary,
|
|
)
|
|
|
|
__all__ = [
|
|
"flatten_polygon_coords",
|
|
"reshape_to_polygon_coords",
|
|
"get_coordinate_path",
|
|
"write_polygon_collection_flatbuffer",
|
|
"get_polygon_collection",
|
|
"read_polygon_array_from_binary",
|
|
"get_hybrid_shortcut_file_path",
|
|
"write_hybrid_shortcuts_flatbuffers",
|
|
"read_hybrid_shortcuts_binary",
|
|
]
|