mirror of
https://github.com/schrodinger/pymol-open-source.git
synced 2026-06-03 19:54:24 +08:00
22 lines
218 B
C++
22 lines
218 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
struct Offset2D
|
|
{
|
|
std::int32_t x;
|
|
std::int32_t y;
|
|
};
|
|
|
|
struct Extent2D
|
|
{
|
|
std::uint32_t width;
|
|
std::uint32_t height;
|
|
};
|
|
|
|
struct Rect2D
|
|
{
|
|
Offset2D offset;
|
|
Extent2D extent;
|
|
};
|