MCPcopy Create free account
hub / github.com/ProgerXP/Notepad2e / Intersects

Method Intersects

scintilla/include/Platform.h:134–137  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

132 (rc.top >= top) && (rc.bottom <= bottom);
133 }
134 bool Intersects(PRectangle other) {
135 return (right > other.left) && (left < other.right) &&
136 (bottom > other.top) && (top < other.bottom);
137 }
138 void Move(XYPOSITION xDelta, XYPOSITION yDelta) {
139 left += xDelta;
140 top += yDelta;

Callers 2

PaintSelMarginMethod · 0.80
PaintMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected