@threeify/math
Version:
Computer graphics oriented, High performance, tree-shakeable, TypeScript 3D vector math library.
76 lines (75 loc) • 891 B
text/typescript
export const HaltonSequence = [
[[0, 0]],
[
[ ],
[-4, -4]
],
[
[-2, -6],
[ ],
[-6, 2],
[ ]
],
[
[ ],
[-1, 3],
[ ],
[-3, -5],
[-5, 5],
[-7, -1],
[ ],
[ ]
],
[
[ ],
[-1, -3],
[-3, 2],
[ ],
[-5, -2],
[ ],
[ ],
[ ],
[-2, 6],
[ ],
[-4, -6],
[-6, 4],
[-8, 0],
[ ],
[ ],
[-7, -8]
],
[
[-4, -7],
[-7, -5],
[-3, -5],
[-5, -4],
[-1, -4],
[-2, -2],
[-6, -1],
[-4, 0],
[-7, 1],
[-1, 2],
[-6, 3],
[-3, 3],
[-7, 6],
[-3, 6],
[-5, 7],
[-1, 7],
[ ],
[ ],
[ ],
[ ],
[ ],
[ ],
[ ],
[ ],
[ ],
[ ],
[ ],
[ ],
[ ],
[ ],
[ ],
[ ]
]
];