MCPcopy Create free account
hub / github.com/FreeFem/FreeFem-sources / InRecScreen

Function InRecScreen

src/Graphics/Xrgraph.cpp:601–605  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

599
600
601int InRecScreen(reel x1, reel y1,reel x2, reel y2)
602{
603
604 return (Max(x1,x2)>= rxmin) && (Min(x1,x2) <= rxmax) && (Max(y1,y2) >= rymin) && (Min(y1,y2) <= rymax);
605}
606int InPtScreen( reel x, reel y)
607{
608 return (x >= rxmin) && (x <= rxmax) && (y >= rymin) && (y <= rymax);

Callers 2

MinMaxMethod · 0.50
DrawMethod · 0.50

Calls 2

MaxFunction · 0.70
MinFunction · 0.70

Tested by

no test coverage detected