v3 <- vector3 tribble( ~point1, ~point2, v3(0, 0, 0), v3(42, 19, 97), v3(0, 0, 97), v3(42, 19, 0), v3(0, 29, 0), v3(42, 0, 97), v3(0, 29, 97), v3(42, 0, 0) ) creates list-columns - what's the problem with that?
v3 <- vector3
tribble(
~point1, ~point2,
v3(0, 0, 0), v3(42, 19, 97),
v3(0, 0, 97), v3(42, 19, 0),
v3(0, 29, 0), v3(42, 0, 97),
v3(0, 29, 97), v3(42, 0, 0)
)
creates list-columns - what's the problem with that?