(point3DId: bigint, xyz: [number, number, number])
| 100 | } |
| 101 | |
| 102 | function makePoint(point3DId: bigint, xyz: [number, number, number]): Point3D { |
| 103 | return { |
| 104 | point3DId, |
| 105 | xyz, |
| 106 | rgb: [255, 255, 255], |
| 107 | error: 0, |
| 108 | track: [], |
| 109 | }; |
| 110 | } |
| 111 | |
| 112 | function expectVectorClose(actual: number[], expected: number[]): void { |
| 113 | expect(actual).toHaveLength(expected.length); |
no outgoing calls
no test coverage detected