c++ - 如何将屏幕上的鼠标坐标转换为 3D 坐标

标签 c++ opengl glut mouse-picking

我正在使用 C++ 中的 GLUT 创建一个 3D 应用程序。

现在,我想实现一个类似这样的方法:

Vector3* MyClass::get3DObjectfromMouse(int mouseX, int mouseY);

如何实现这个方法?

最佳答案

正如 Andon M. Coleman 所评论的那样,实现此目的的一种方法是使用未投影的屏幕坐标进行光线/对象相交测试。这种技术通常称为挑选

一个用于采摘的伪C++代码:

假设我们有一个 3D 对象类型/类:

class Object3D { ... };

3D 拾取函数将返回所有对象的列表,这些对象与从近平面中的给定 2D 点到远平面中的同一点的直线相交。

struct LineSegment 
{
    Vector3 start;
    Vector3 end;
};

Object3D[] Pick(float x, float y)
{
    LineSegment lineSeg;
    Object3D[] intersectedObjs;

    // Do both un-projections for z-near (0) and z-far (1).
    // This produces a line segment going from z-near to far.
    UnProject(x, y, /* z = */ 0.0, modelViewMatrix, projectionMatrix, viewport, lineSeg.start);
    UnProject(x, y, /* z = */ 1.0, modelViewMatrix, projectionMatrix, viewport, lineSeg.end);

    // Iterate all object in the scene or in the current view:
    for (Object3D obj : scene)
    {
        if (TestLineIntersection(obj, lineSeg))
        {
            // This object is crossed by the picking line.
            intersectedObjs.Add(obj);
        }
    }

    // Optionally you might want sort them from distance 
    // to the camera/viewer before returning the intersections.
    return intersectedObjs;
}

UnProject() 函数看起来像这样:

bool UnProject(float winX, float winY, float winZ,
               const Matrix4 & modelView, const Matrix4 & projection,
               const ScreenRect viewport, Vector3 & worldCoordinates)
{
    // Compute (projection x modelView) ^ -1:
    const Matrix4 m = inverse(projection * modelView);

    // Need to invert Y since screen Y-origin point down,
    // while 3D Y-origin points up (this is an OpenGL only requirement):
    winY = viewport.Height() - winY;

    // Transformation of normalized coordinates between -1 and 1:
    Vector4 in;
    in[0] = (winX - viewport.X()) / viewport.Width()  * 2.0 - 1.0;
    in[1] = (winY - viewport.Y()) / viewport.Height() * 2.0 - 1.0;
    in[2] = 2.0 * winZ - 1.0;
    in[3] = 1.0;

    // To world coordinates:
    Vector4 out(m * in);
    if (out[3] == 0.0) // Avoid a division by zero
    {
        worldCoordinates = Vector3Zero;
        return false;
    }

    out[3] = 1.0 / out[3];
    worldCoordinates[0] = out[0] * out[3];
    worldCoordinates[1] = out[1] * out[3];
    worldCoordinates[2] = out[2] * out[3];
    return true;
}

为了澄清,TestLineIntersection()AABB 做了一条线交集测试。边界框应转换为世界空间,因为它通常表示为局部模型空间中的一组点。

bool TestLineIntersection(const Object3D & obj, const LineSegment & lineSeg)
{
    AABB aabb = obj.GetAABB();
    aabb.TransformBy(obj.modelMatrix);
    return aabb.LineIntersection(lineSeg.start, lineSeg.end);
}

// AABB.cpp:
bool AABB::LineIntersection(const Vector3 & start, const Vector3 & end) const
{
    const Vector3 center     = (mins + maxs) * 0.5;
    const Vector3 extents    = maxs - center;
    const Vector3 lineDir    = 0.5 * (end - start);
    const Vector3 lineCenter = start + lineDir;
    const Vector3 dir        = lineCenter - center;

    const float ld0 = Mathf::Abs(lineDir[0]);
    if (Mathf::Abs(dir[0]) > (extents[0] + ld0))
    {
        return false;
    }

    const float ld1 = Mathf::Abs(lineDir[1]);
    if (Mathf::Abs(dir[1]) > (extents[1] + ld1))
    {
        return false;
    }

    const float ld2 = Mathf::Abs(lineDir[2]);
    if (Mathf::Abs(dir[2]) > (extents[2] + ld2))
    {
        return false;
    }

    const Vector3 vCross = cross(lineDir, dir);
    if (Mathf::Abs(vCross[0]) > (extents[1] * ld2 + extents[2] * ld1))
    {
        return false;
    }
    if (Mathf::Abs(vCross[1]) > (extents[0] * ld2 + extents[2] * ld0))
    {
        return false;
    }
    if (Mathf::Abs(vCross[2]) > (extents[0] * ld1 + extents[1] * ld0))
    {
        return false;
    }

    return true;
}

关于c++ - 如何将屏幕上的鼠标坐标转换为 3D 坐标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23644470/

相关文章:

opengl - HOpenGL - OpenGL 窗口保持最小化

c++ - 你如何在 osx 上使用 waf 链接 opengl 和 glut?

c++ - 如何通过捕获在函数中传递 lambda?

c++ - 使用捆绑属性作为 dijkstra_shortest_paths 中的权重图

c++ - 将 OpenGL 渲染保存到图像文件

c++ - glOrtho 不工作?

c++ - 在 C++ dll 中存储状态

c++ - 返回 vector 元素 C++ 的地址

c++ - Windows 7 64 位,Qt 4 : glGetVersion returns "1.1.0", nvogl32v.dll 被卸载

python - 如何从 Superbible Opengl 读取、解析 SBM 文件格式