mirror of
https://github.com/OpenMW/openmw.git
synced 2025-04-03 06:06:41 +00:00
Add comment
This commit is contained in:
parent
576d5111a5
commit
f5f3d18b8e
1 changed files with 4 additions and 1 deletions
|
@ -271,7 +271,10 @@ namespace MWRender
|
||||||
{
|
{
|
||||||
float projX = (posX / mCamera->getViewport()->width()) * 2 - 1.f;
|
float projX = (posX / mCamera->getViewport()->width()) * 2 - 1.f;
|
||||||
float projY = (posY / mCamera->getViewport()->height()) * 2 - 1.f;
|
float projY = (posY / mCamera->getViewport()->height()) * 2 - 1.f;
|
||||||
// With Intersector::WINDOW, the intersection ratios are slightly inaccurate. TODO: investigate
|
// With Intersector::WINDOW, the intersection ratios are slightly inaccurate. Seems to be a
|
||||||
|
// precision issue - compiling with OSG_USE_FLOAT_MATRIX=0, Intersector::WINDOW works ok.
|
||||||
|
// Using Intersector::PROJECTION results in better precision because the start/end points and the model matrices
|
||||||
|
// don't go through as many transformations.
|
||||||
osg::ref_ptr<osgUtil::LineSegmentIntersector> intersector (new osgUtil::LineSegmentIntersector(osgUtil::Intersector::PROJECTION, projX, projY));
|
osg::ref_ptr<osgUtil::LineSegmentIntersector> intersector (new osgUtil::LineSegmentIntersector(osgUtil::Intersector::PROJECTION, projX, projY));
|
||||||
|
|
||||||
intersector->setIntersectionLimit(osgUtil::LineSegmentIntersector::LIMIT_NEAREST);
|
intersector->setIntersectionLimit(osgUtil::LineSegmentIntersector::LIMIT_NEAREST);
|
||||||
|
|
Loading…
Reference in a new issue