From: Benjamin Bihler Date: Wed, 14 Oct 2015 08:45:18 +0000 (+0300) Subject: 0026773: Visualization - deviation angle cannot be set by AIS_InteractiveContext... X-Git-Tag: V7_0_0_beta~188 X-Git-Url: http://git.dev.opencascade.org/gitweb/?a=commitdiff_plain;h=e19792fafc2fded31d24fa4ac2fad50e419158e0;p=occt-copy.git 0026773: Visualization - deviation angle cannot be set by AIS_InteractiveContext::SetDeviationAngle() due to misprint Modified deviation angle setter to set the angle. --- diff --git a/src/AIS/AIS_InteractiveContext.cxx b/src/AIS/AIS_InteractiveContext.cxx index aa5f229309..85b873fe52 100644 --- a/src/AIS/AIS_InteractiveContext.cxx +++ b/src/AIS/AIS_InteractiveContext.cxx @@ -1480,7 +1480,7 @@ void AIS_InteractiveContext::SetDeviationCoefficient (const Standard_Real theCoe //======================================================================= void AIS_InteractiveContext::SetDeviationAngle (const Standard_Real theAngle) { - myDefaultDrawer->SetDeviationCoefficient (theAngle); + myDefaultDrawer->SetDeviationAngle (theAngle); } //=======================================================================