photos.ts 291 B

123456789101112131415
  1. import {ref} from "vue";
  2. import {Pos} from "@/sdk";
  3. export type PhotoRaw = {
  4. id: string
  5. url: string
  6. meterPerPixel: number
  7. time: number,
  8. measures: Array<Pos[]>,
  9. fixPoints: Array<Pos>,
  10. basePoints: Array<Pos>
  11. baseLines: Array<Pos[]>
  12. }
  13. export const photos = ref<PhotoRaw[]>([])