#2121 Intersections: Add option "Azimuth, Dip" to Intersecting Geometry

This commit is contained in:
Unknown
2017-11-21 13:43:22 +01:00
committed by Rebecca Cox
parent d19089710c
commit 3142f7dd44
3 changed files with 191 additions and 54 deletions

View File

@@ -108,9 +108,15 @@ bool RicNewPolylineIntersectionFeature::handleEvent(cvf::Object* eventObject)
}
else if (intersection->inputExtrusionPointsFromViewerEnabled())
{
intersection->appendPointToExtrusionDirection(domainCoord);
// Further Ui processing is stopped when true is returned
return true;
}
else if (intersection->inputTwoAzimuthPointsFromViewerEnabled())
{
intersection->appendPointToAzimuthLine(domainCoord);
// Further Ui processing is stopped when true is returned
return true;
}