You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
199 B
16 lines
199 B
2 months ago
|
// License: Apache 2.0. See LICENSE file in root directory.
|
||
|
// Copyright(c) 2021 Intel Corporation. All Rights Reserved.
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
namespace rs2 {
|
||
|
|
||
|
|
||
|
struct float4
|
||
|
{
|
||
|
float x, y, z, w;
|
||
|
};
|
||
|
|
||
|
|
||
|
}
|