OrangePi3588Media/include/frame/rect.h

13 lines
155 B
C++

#pragma once
namespace rk3588 {
struct Rect {
float x = 0.0f;
float y = 0.0f;
float w = 0.0f;
float h = 0.0f;
};
} // namespace rk3588