1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-09 13:22:24 +03:00

0031190: Modeling Algorithms - progress indication in GeomPlate is inconsistent

Added ability to display progress indicator in plate commands
Added tests
This commit is contained in:
akaftasev
2021-03-29 19:15:54 +03:00
committed by bugmaster
parent 51c21d1fe4
commit 00e9052bee
9 changed files with 162 additions and 11 deletions

View File

@@ -185,7 +185,7 @@ Standard_Integer LU_Decompose(math_Matrix& a,
Standard_Integer n = a.RowNumber();
d = 1.0;
Message_ProgressScope aPS(theProgress, "", n);
Message_ProgressScope aPS(theProgress, "math_Gauss LU_Decompose", n);
for(i = 1; i <= n; i++) {
big = 0.0;