光线追踪:来自多个灯光的阴影

问题描述 投票:0回答:1

[编辑]正如编程中的典型,我在发布后不久就想出来了!如果你有兴趣,请看我的答案:)

我正在研究C ++中的光线跟踪器,并希望得到一些帮助。我的场景中有2个灯,一个点光源和一个定向灯,还有一堆球体(以及一个作为“地板”的平面)。

如果我使用任一灯光(但不存在其他灯光)运行光线跟踪器,它会按预期生成阴影(请参见下图)。

Directional light shadows image

Point light shadows image

麻烦的是,当我运行我的光线追踪器并且两个灯都存在时,只有点光影出现,我可以告诉灯是“开”,因为场景更亮:

请参阅下面的代码以检测阴影:

bool Scene::shadowtrace( Ray &ray, double t )
{
    Object *obj = obj_list;
    Light *lt = light_list;
    Vector v1, v2; // hit -> light vector
    Hit   hit;

    Vertex intersect = (ray.position( t ));
    intersect.plus( ray.D, -0.001 ); // offset  intersection ever so slightly away from object, to avoid self-shadowing
    v1.set( 0.0, 0.0, 0.0 );
    v2.set( 0.0, 0.0, 0.0 ); // initialise

    while (lt != (Light *)0)
    {
        Ray shadowRay;
        shadowRay.P = (intersect);

        Vertex lightPos = Vertex( 0.0, 0.0, 0.0, 0.0 );
        lt->getPosition( lightPos ); // sets value of lightPos

        if (lightPos.x > T_LIMIT) // If set absurdly high, we're dealing with a directional light
        {
            lt->getDirection( v1 ); // sets v1 to light direction (reversed)
            v1.normalise( );
            shadowRay.D = v1; // set hit-to-light vector as shadowray direction

            while (obj != (Object *)0)
            {
                if (obj->intersect( shadowRay, &hit ) == true)
                {
                    if (!((hit.t * hit.t) < 0.001)) // Self-shadow if very very small t number
                    {
                        return true; // ray hits an onject, and the object occurs before the light
                    }
                }
                obj = obj->next( );
            }
        }
        else    // otherwise, it's a point light :)
        {
            v1 = (lightPos.minus( intersect )); // find vector from intersection to light
            v2 = v1; // keep un-normalised version for preventing mis-shadowing from objects behind the light source
            v1.normalise( );
            shadowRay.D = v1; // set ray direction to hit-to-light vector

            while (obj != (Object *)0)
            {
                if (obj->intersect( shadowRay, &hit ) == true)
                {
                    if (!((hit.t * hit.t) > (v2.lengthSq( ))))  // Check hit.t against magnitude of (un-normalised) intersection-to-light vector
                        if (!((hit.t * hit.t) < 0.001)) // Self-shadow if very very small t number
                        { // Used hit.t^2 to avoid having to SQRT the length. Is acceptable for comparisons
                            return true; // ray hits an onject, and the object occurs before the light
                        }

                }

                obj = obj->next( );
            }
        }

        lt = lt->next( );
    }

    return false;
}

如果检测到阴影,则仅将环境光归因于该点,否则将归因于环境+漫反射(我还没有得到圆形添加镜面反射)。

任何建议都会很棒!

c++ shadow raytracing light
1个回答
0
投票

误报人!我想到了!!

在每个对象列表循环之前我添加了:

obj = obj_list;

重置为第一个对象,这解决了问题:)

© www.soinside.com 2019 - 2024. All rights reserved.