From e19792fafc2fded31d24fa4ac2fad50e419158e0 Mon Sep 17 00:00:00 2001 From: Benjamin Bihler Date: Wed, 14 Oct 2015 11:45:18 +0300 Subject: [PATCH] 0026773: Visualization - deviation angle cannot be set by AIS_InteractiveContext::SetDeviationAngle() due to misprint Modified deviation angle setter to set the angle. --- src/AIS/AIS_InteractiveContext.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } //=======================================================================