forked from blender/blender
main sync #3
@ -56,8 +56,8 @@ class BoundBox {
|
|||||||
|
|
||||||
__forceinline void grow(const BoundBox &bbox)
|
__forceinline void grow(const BoundBox &bbox)
|
||||||
{
|
{
|
||||||
grow(bbox.min);
|
min = ccl::min(bbox.min, min);
|
||||||
grow(bbox.max);
|
max = ccl::max(bbox.max, max);
|
||||||
}
|
}
|
||||||
|
|
||||||
__forceinline void grow_safe(const float3 &pt)
|
__forceinline void grow_safe(const float3 &pt)
|
||||||
@ -81,8 +81,12 @@ class BoundBox {
|
|||||||
|
|
||||||
__forceinline void grow_safe(const BoundBox &bbox)
|
__forceinline void grow_safe(const BoundBox &bbox)
|
||||||
{
|
{
|
||||||
grow_safe(bbox.min);
|
if (isfinite_safe(bbox.min)) {
|
||||||
grow_safe(bbox.max);
|
min = ccl::min(bbox.min, min);
|
||||||
|
}
|
||||||
|
if (isfinite_safe(bbox.max)) {
|
||||||
|
max = ccl::max(bbox.max, max);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
__forceinline void intersect(const BoundBox &bbox)
|
__forceinline void intersect(const BoundBox &bbox)
|
||||||
|
Loading…
Reference in New Issue
Block a user