basePoint.ts 171 B

123456789101112
  1. import {ref} from "vue";
  2. export type BasePoint = {
  3. id: string
  4. pos: {
  5. x: number,
  6. y: number,
  7. z: number
  8. }
  9. }
  10. export const basePoints = ref<BasePoint[]>([])