import { reactive } from 'vue'; export let initDatas = reactive({ // 后面 Back: { id: 'Back', x: 320, // center y: 310, // center r: 321, // radius a: 4.679, // angle (from 0 to Math.PI * 2) move: 0.05, point: '#point', tree: '#point-tree' }, // 右边 Right: { id: 'Right', x: 320, // center y: 310, // center r: 321, // radius a: 0.05, // angle (from 0 to Math.PI * 2) move: 1.601, point: '#point-r', tree: '#point-r-tree' }, // 前面 Front:{ id: 'Front', x: 320, // center y: 310, // center r: 321, // radius a: 1.601, // angle (from 0 to Math.PI * 2) move: 3.201, point: '#point-f', tree: '#point-f-tree' }, // 左边 Left: { id: 'Left', x: 320, // center y: 310, // center r: 321, // radius a: 3.201, // angle (from 0 to Math.PI * 2) move: 4.67, point: '#point-l', tree: '#point-l-tree' } })