first commit

This commit is contained in:
陈赣
2026-06-03 12:43:14 +08:00
commit ba76cfae28
608 changed files with 120791 additions and 0 deletions

20
objects/shapes/vp_size.h Executable file
View File

@@ -0,0 +1,20 @@
#pragma once
#include <utility>
namespace vp_objects {
// size(width and height) in 2-dims coordinate system
class vp_size {
private:
/* data */
public:
vp_size(int width = 0, int height = 0);
~vp_size();
int width;
int height;
};
}