1
0
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:
ika 2013-01-25 14:49:08 +04:00
parent 5f9575b332
commit f34eec8f91
3 changed files with 30 additions and 2 deletions

View File

@ -331,6 +331,7 @@ void GeomAdaptor_Curve::Intervals(TColStd_Array1OfReal& T,
{
Standard_Integer myNbIntervals = 1;
Standard_Integer NbSplit;
Standard_Real FirstParam = myFirst, LastParam = myLast;
if (myTypeCurve == GeomAbs_BSplineCurve)
{
@ -398,6 +399,8 @@ void GeomAdaptor_Curve::Intervals(TColStd_Array1OfReal& T,
BSplCLib::LocateParameter(myBspl->Degree(),TK,TM,myLast,
myBspl->IsPeriodic(),
1,Nb,Index2,newLast);
FirstParam = newFirst;
LastParam = newLast;
// On decale eventuellement les indices
// On utilise une "petite" tolerance, la resolution ne doit
// servir que pour les tres longue courbes....(PRO9248)
@ -456,8 +459,8 @@ void GeomAdaptor_Curve::Intervals(TColStd_Array1OfReal& T,
// akm 05/04/02 ^^^
}
T( T.Lower() ) = myFirst;
T( T.Lower() + myNbIntervals ) = myLast;
T( T.Lower() ) = FirstParam;
T( T.Lower() + myNbIntervals ) = LastParam;
}
//=======================================================================

View File

@ -158,5 +158,9 @@ if { [info exist only_screen2d] } {
v2ddump $imagedir/${test_image}.png
}
if { [info exist only_screen_axo] } {
xwd $imagedir/${test_image}.png
}
# to end a test script
puts "TEST COMPLETED"

21
tests/bugs/vis/bug23062 Executable file
View 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