bsnes/hiro/core/size.cpp
byuu 903d1e4012 v107.8
* GB: integrated SameBoy v0.12.1 by Lior Halphon
* SFC: added HG51B169 (Cx4) math tables into bsnes binary
2019-07-17 21:11:46 +09:00

55 lines
997 B
C++
Executable file

#if defined(Hiro_Size)
Size::Size() {
setSize(0, 0);
}
Size::Size(float width, float height) {
setSize(width, height);
}
Size::operator bool() const {
return state.width || state.height;
}
auto Size::operator==(const Size& source) const -> bool {
return width() == source.width() && height() == source.height();
}
auto Size::operator!=(const Size& source) const -> bool {
return !operator==(source);
}
auto Size::height() const -> float {
return state.height;
}
auto Size::reset() -> type& {
return setSize(0, 0);
}
auto Size::setHeight(float height) -> type& {
state.height = height;
return *this;
}
auto Size::setSize(Size size) -> type& {
return setSize(size.width(), size.height());
}
auto Size::setSize(float width, float height) -> type& {
state.width = width;
state.height = height;
return *this;
}
auto Size::setWidth(float width) -> type& {
state.width = width;
return *this;
}
auto Size::width() const -> float {
return state.width;
}
#endif