123456789101112131415 |
- import {ref} from "vue";
- import {Pos} from "@/sdk";
- export type PhotoRaw = {
- id: string
- url: string
- meterPerPixel: number
- time: number,
- measures: Array<Pos[]>,
- fixPoints: Array<Pos>,
- basePoints: Array<Pos>
- baseLines: Array<Pos[]>
- }
- export const photos = ref<PhotoRaw[]>([])
|