示例#1
0
bool AABox::culledBy(
    const Array<Plane>&		plane,
	int&				    cullingPlaneIndex,
	const uint32			inMask) const {

	return culledBy(plane.getCArray(), plane.size(), cullingPlaneIndex, inMask);
}
示例#2
0
bool Sphere::culledBy(
    const Array<Plane>&		plane,
    int&				    cullingPlaneIndex,
    const uint32			inMask,
    uint32&					outMask) const {
    return culledBy(plane.getCArray(), plane.size(), cullingPlaneIndex, inMask, outMask);
}