MCPcopy Create free account
hub / github.com/LuxCoreRender/LuxCore / Inside

Method Inside

include/luxrays/core/geometry/bbox.h:68–72  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

66 }
67
68 bool Inside(const Point &pt) const {
69 return (pt.x >= pMin.x && pt.x <= pMax.x &&
70 pt.y >= pMin.y && pt.y <= pMax.y &&
71 pt.z >= pMin.z && pt.z <= pMax.z);
72 }
73
74 bool Inside(const BBox &bb) const {
75 return (bb.pMin.x >= pMin.x && bb.pMax.x <= pMax.x &&

Callers 5

GetNearestEntryImplMethod · 0.80
GetNearestEntryImplMethod · 0.80
GetNearestEntryImplMethod · 0.80
GetAllNearEntriesImplMethod · 0.80
ProcessMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected