mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-24 13:50:49 +03:00
OCC22324 Mistakes with parenthesis position in abs calls
This commit is contained in:
@@ -163,7 +163,7 @@ void Aspect_RectangularGrid::Init () {
|
||||
|
||||
Standard_Boolean Aspect_RectangularGrid::CheckAngle(const Standard_Real alpha,
|
||||
const Standard_Real beta) const {
|
||||
return Abs( Sin(alpha)*Cos(beta+Standard_PI/2.) - Cos(alpha)*Sin(beta+Standard_PI/2.) != 0) ;
|
||||
return (Abs( Sin(alpha) * Cos(beta+Standard_PI/2.) - Cos(alpha) * Sin(beta+Standard_PI/2.)) != 0) ;
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user