mirror of
https://github.com/azaion/gps-denied-onboard.git
synced 2026-04-22 22:56:36 +00:00
abc26d5c20
docs -> _docs
12 lines
228 B
Python
12 lines
228 B
Python
import numpy as np
|
|
from pydantic import BaseModel, ConfigDict
|
|
|
|
|
|
class Sim3Transform(BaseModel):
|
|
model_config = ConfigDict(arbitrary_types_allowed=True)
|
|
|
|
translation: np.ndarray
|
|
rotation: np.ndarray
|
|
scale: float
|
|
|