mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-06 18:26:22 +03:00
0022694: Wrong result obtained after GeomLib::ExtendSurfByLength
This commit is contained in:
parent
ec99ba3232
commit
47c580a75f
@ -1455,8 +1455,10 @@ void GeomLib::ExtendSurfByLength(Handle(Geom_BoundedSurface)& Surface,
|
||||
}
|
||||
|
||||
|
||||
Standard_Boolean rational = ( InU && BS->IsURational() )
|
||||
|| ( !InU && BS->IsVRational() ) ;
|
||||
// IFV Fix OCC bug 0022694 - wrong result extrapolating rational surfaces
|
||||
// Standard_Boolean rational = ( InU && BS->IsURational() )
|
||||
// || ( !InU && BS->IsVRational() ) ;
|
||||
Standard_Boolean rational = (BS->IsURational() || BS->IsVRational());
|
||||
Standard_Boolean NullWeight;
|
||||
Standard_Real EpsW = 10*Precision::PConfusion();
|
||||
Standard_Integer gap = 3;
|
||||
|
Loading…
x
Reference in New Issue
Block a user