diff options
author | crupest <crupest@outlook.com> | 2021-10-02 16:44:32 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-10-02 16:44:32 +0800 |
commit | 24a636954a25e938c079d88f48ee01143d667cfb (patch) | |
tree | 5901c9a6eb41907976d38401f3617fc30de62052 /include/cru/osx/graphics/quartz/Convert.hpp | |
parent | f246877698e5b9aa98e99f3fd3d2247998008695 (diff) | |
download | cru-24a636954a25e938c079d88f48ee01143d667cfb.tar.gz cru-24a636954a25e938c079d88f48ee01143d667cfb.tar.bz2 cru-24a636954a25e938c079d88f48ee01143d667cfb.zip |
...
Diffstat (limited to 'include/cru/osx/graphics/quartz/Convert.hpp')
-rw-r--r-- | include/cru/osx/graphics/quartz/Convert.hpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/cru/osx/graphics/quartz/Convert.hpp b/include/cru/osx/graphics/quartz/Convert.hpp index f85fc20e..a8cc270e 100644 --- a/include/cru/osx/graphics/quartz/Convert.hpp +++ b/include/cru/osx/graphics/quartz/Convert.hpp @@ -12,6 +12,12 @@ String Convert(CFStringRef string); CGAffineTransform Convert(const Matrix& matrix); Matrix Convert(const CGAffineTransform& matrix); +CGPoint Convert(const Point& point); +Point Convert(const CGPoint& point); + +CGSize Convert(const Size& size); +Size Convert(const CGSize& size); + CGRect Convert(const Rect& rect); Rect Convert(const CGRect& rect); |