Correct default model matrix
This commit is contained in:
parent
15583b484b
commit
89f056b4ab
1 changed files with 3 additions and 3 deletions
|
|
@ -131,9 +131,9 @@ dev_iio_t* dev_iio_create(const char* path) {
|
|||
iio->outer_temp_scale = 0.0;
|
||||
|
||||
double mm[3][3] = {
|
||||
{1.0, 0.0, 0.0},
|
||||
{0.0, 1.0, 0.0},
|
||||
{0.0, 0.0, -1.0}
|
||||
{0.0f, 0.0f, -1.0f},
|
||||
{0.0f, 1.0f, 0.0f},
|
||||
{1.0f, 0.0f, 0.0f}
|
||||
};
|
||||
memcpy(iio->mount_matrix, mm, sizeof(mm));
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue