MCPcopy Create free account
hub / github.com/Snapchat/Valdi / isEmpty

Method isEmpty

valdi/src/valdi/runtime/Views/Frame.cpp:151–153  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

149}
150
151bool Frame::isEmpty() const {
152 return x == 0 && y == 0 && width == 0 && height == 0;
153}
154
155Frame Frame::withOffset(float offsetX, float offsetY) const {
156 return Frame(x + offsetX, y + offsetY, width, height);

Calls

no outgoing calls