(overrides: Partial<Point2D> = {})
| 64 | } |
| 65 | |
| 66 | export function buildPoint2D(overrides: Partial<Point2D> = {}): Point2D { |
| 67 | return { |
| 68 | xy: [0, 0], |
| 69 | point3DId: UNMATCHED_POINT3D_ID, |
| 70 | ...overrides, |
| 71 | }; |
| 72 | } |
| 73 | |
| 74 | export function buildImage(overrides: Partial<Image> = {}): Image { |
| 75 | return { |
no outgoing calls