I'd like to use CC to create a fly through animation on a point cloud based on a text file which has rows in the following format:
Timestamp x y z roll pitch yaw
Example:
Code: Select all
1448534152426583, 0.000016373800, 0.000000496031, -0.000051859500, 0.000006510990, -0.000002266520, -0.000000595645
1448534152476580, 0.000002952982, 0.000008420957, -0.000129863979, 0.000010835746, -0.000003999963, 0.000001385994
1448534152526579, -0.000012847086, -0.000019797941, -0.000178220648, 0.000006050605, -0.000007709890, 0.000003889104
1448534152576577, 0.000055242237, -0.000024177319, -0.000153043349, 0.000001814640, -0.000015749586, 0.000009759885
1448534152626574, -0.000150767281, -0.000008456334, -0.000701345565, 0.000004704640, -0.000109008891, 0.000012938696
1448534152676572, -0.000142334592, 0.000007828226, -0.000690973969, 0.000011021827, -0.000116716296, 0.000013978659
1448534152726570, -0.000012580036, 0.000089568445, -0.000791200925, 0.000033929342, -0.000148412948, 0.000009564050
1448534152776568, -0.000035494673, 0.000095962351, -0.000772499808, 0.000031521704, -0.000143479440, 0.000008744500
Do I have to transpose/transform these values into a 4x4 matrix?