mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
0023062: Incorrect display of edge in draw axo viewer
Update first and last parameters of intervals, because they should be at same period like other values.
This commit is contained in:
parent
5f9575b332
commit
f34eec8f91
@ -331,6 +331,7 @@ void GeomAdaptor_Curve::Intervals(TColStd_Array1OfReal& T,
|
|||||||
{
|
{
|
||||||
Standard_Integer myNbIntervals = 1;
|
Standard_Integer myNbIntervals = 1;
|
||||||
Standard_Integer NbSplit;
|
Standard_Integer NbSplit;
|
||||||
|
Standard_Real FirstParam = myFirst, LastParam = myLast;
|
||||||
|
|
||||||
if (myTypeCurve == GeomAbs_BSplineCurve)
|
if (myTypeCurve == GeomAbs_BSplineCurve)
|
||||||
{
|
{
|
||||||
@ -398,6 +399,8 @@ void GeomAdaptor_Curve::Intervals(TColStd_Array1OfReal& T,
|
|||||||
BSplCLib::LocateParameter(myBspl->Degree(),TK,TM,myLast,
|
BSplCLib::LocateParameter(myBspl->Degree(),TK,TM,myLast,
|
||||||
myBspl->IsPeriodic(),
|
myBspl->IsPeriodic(),
|
||||||
1,Nb,Index2,newLast);
|
1,Nb,Index2,newLast);
|
||||||
|
FirstParam = newFirst;
|
||||||
|
LastParam = newLast;
|
||||||
// On decale eventuellement les indices
|
// On decale eventuellement les indices
|
||||||
// On utilise une "petite" tolerance, la resolution ne doit
|
// On utilise une "petite" tolerance, la resolution ne doit
|
||||||
// servir que pour les tres longue courbes....(PRO9248)
|
// servir que pour les tres longue courbes....(PRO9248)
|
||||||
@ -456,8 +459,8 @@ void GeomAdaptor_Curve::Intervals(TColStd_Array1OfReal& T,
|
|||||||
// akm 05/04/02 ^^^
|
// akm 05/04/02 ^^^
|
||||||
}
|
}
|
||||||
|
|
||||||
T( T.Lower() ) = myFirst;
|
T( T.Lower() ) = FirstParam;
|
||||||
T( T.Lower() + myNbIntervals ) = myLast;
|
T( T.Lower() + myNbIntervals ) = LastParam;
|
||||||
}
|
}
|
||||||
|
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
|
@ -158,5 +158,9 @@ if { [info exist only_screen2d] } {
|
|||||||
v2ddump $imagedir/${test_image}.png
|
v2ddump $imagedir/${test_image}.png
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if { [info exist only_screen_axo] } {
|
||||||
|
xwd $imagedir/${test_image}.png
|
||||||
|
}
|
||||||
|
|
||||||
# to end a test script
|
# to end a test script
|
||||||
puts "TEST COMPLETED"
|
puts "TEST COMPLETED"
|
||||||
|
21
tests/bugs/vis/bug23062
Executable file
21
tests/bugs/vis/bug23062
Executable file
@ -0,0 +1,21 @@
|
|||||||
|
puts "========"
|
||||||
|
puts "CR23062"
|
||||||
|
puts "========"
|
||||||
|
puts ""
|
||||||
|
|
||||||
|
#######################################################
|
||||||
|
## Incorrect display of edge in draw axo viewer
|
||||||
|
#######################################################
|
||||||
|
|
||||||
|
restore [locate_data_file bug23062_ProblemWire.brep] result
|
||||||
|
|
||||||
|
smallview
|
||||||
|
display result
|
||||||
|
fit
|
||||||
|
|
||||||
|
explode result v
|
||||||
|
|
||||||
|
vinit
|
||||||
|
vdisplay result
|
||||||
|
|
||||||
|
set only_screen_axo 1
|
Loading…
x
Reference in New Issue
Block a user