1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

0030286: Cover polygonal HLR algorithm by regression tests

New folder "hlr" with subfolders "exact_hlr" and "poly_hlr" has been created.
Draw command "vcomputehlr" has been corrected.
QA command "OCC27341" has been deleted as "vcomputehlr" does its job.
This commit is contained in:
jgv 2018-12-18 16:57:32 +03:00 committed by bugmaster
parent 9975d32acf
commit 3977d18aca
240 changed files with 1530 additions and 1767 deletions

View File

@ -1589,90 +1589,6 @@ static Standard_Integer OCC26930(Draw_Interpretor& theDI,
return 0;
}
//=======================================================================
//function : OCC27341
//purpose : check exact HLR algorighm's work
//=======================================================================
static Standard_Integer OCC27341 (Draw_Interpretor& , Standard_Integer n, const char** a)
{
if (n != 4)
{
cout << "Use: OCC27341 res shape axo/top/bottom/front/back/left/right" << endl;
return 1;
}
TopoDS_Shape aShape = DBRep::Get(a[2]);
if (aShape.IsNull())
return 1;
gp_Pnt anOrigin(0.,0.,0.);
gp_Dir aNormal(0.57735026918962573, -0.57735026918962573, 0.57735026918962573);
gp_Ax2 anAxes(anOrigin, aNormal);
gp_Dir aDX = anAxes.XDirection();
HLRAppli_ReflectLines Reflector(aShape);
if (strcmp(a[3],"axo") == 0)
{
aNormal.SetCoord(0.57735026918962573, -0.57735026918962573, 0.57735026918962573);
aDX.SetCoord(-0.40824829046386307, 0.40824829046386307, 0.81649658092772615);
}
else if (strcmp(a[3],"top") == 0)
{
aNormal.SetCoord(0,0,1);
aDX.SetCoord(0,1,0);
}
else if (strcmp(a[3],"bottom") == 0)
{
aNormal.SetCoord(0,0,-1);
aDX.SetCoord(0,-1,0);
}
else if (strcmp(a[3],"front") == 0)
{
aNormal.SetCoord(0,-1,0);
aDX.SetCoord(0,0,1);
}
else if (strcmp(a[3],"back") == 0)
{
aNormal.SetCoord(0,1,0);
aDX.SetCoord(0,0,1);
}
else if (strcmp(a[3],"left") == 0)
{
aNormal.SetCoord(-1,0,0);
aDX.SetCoord(0,0,1);
}
else if (strcmp(a[3],"right") == 0)
{
aNormal.SetCoord(1,0,0);
aDX.SetCoord(0,0,1);
}
Reflector.SetAxes(aNormal.X(), aNormal.Y(), aNormal.Z(),
anOrigin.X(), anOrigin.Y(), anOrigin.Z(),
aDX.X(), aDX.Y(), aDX.Z());
Reflector.Perform();
TopoDS_Compound Result;
BRep_Builder BB;
BB.MakeCompound(Result);
TopoDS_Shape SharpEdges = Reflector.GetCompoundOf3dEdges(HLRBRep_Sharp, Standard_True, Standard_False);
if (!SharpEdges.IsNull())
BB.Add(Result, SharpEdges);
TopoDS_Shape OutLines = Reflector.GetCompoundOf3dEdges(HLRBRep_OutLine, Standard_True, Standard_False);
if (!OutLines.IsNull())
BB.Add(Result, OutLines);
TopoDS_Shape SmoothEdges = Reflector.GetCompoundOf3dEdges(HLRBRep_Rg1Line, Standard_True, Standard_False);
if (!SmoothEdges.IsNull())
BB.Add(Result, SmoothEdges);
DBRep::Set(a[1], Result);
return 0;
}
//=======================================================================
//function : OCC27466
//purpose :
@ -3332,9 +3248,6 @@ void QABugs::Commands_20(Draw_Interpretor& theCommands) {
theCommands.Add("OCC27235", "OCC27235", __FILE__, OCC27235, group);
theCommands.Add("OCC26930", "OCC26930", __FILE__, OCC26930, group);
theCommands.Add("OCC27466", "OCC27466", __FILE__, OCC27466, group);
theCommands.Add("OCC27341",
"OCC27341 res shape axo/top/bottom/front/back/left/right",
__FILE__, OCC27341, group);
theCommands.Add ("OCC26747_1", "OCC26747_1 result", __FILE__, OCC26747_1, group);
theCommands.Add ("OCC26747_2", "OCC26747_2 result", __FILE__, OCC26747_2, group);
theCommands.Add ("OCC26747_3", "OCC26747_3 result", __FILE__, OCC26747_3, group);

View File

@ -3083,7 +3083,7 @@ static int VComputeHLR (Draw_Interpretor& ,
gp_Ax2 aProjAx;
bool hasViewDirArg = false;
Prs3d_TypeOfHLR anAlgoType = Prs3d_TOH_PolyAlgo;
bool toShowTangentEdges = false, toShowHiddenEdges = false;
bool toShowCNEdges = false, toShowHiddenEdges = false;
int aNbIsolines = 0;
if (Handle(V3d_Viewer) aViewer = ViewerTest::GetViewerFromContext())
{
@ -3148,9 +3148,9 @@ static int VComputeHLR (Draw_Interpretor& ,
|| anArgCase == "-tangentedges"
|| anArgCase == "-tangent")
{
toShowTangentEdges = true;
toShowCNEdges = true;
if (anArgIter + 1 < theArgNb
&& ViewerTest::ParseOnOff (theArgVec[anArgIter + 1], toShowTangentEdges))
&& ViewerTest::ParseOnOff (theArgVec[anArgIter + 1], toShowCNEdges))
{
++anArgIter;
}
@ -3222,19 +3222,19 @@ static int VComputeHLR (Draw_Interpretor& ,
aVisible[HLRBRep_Sharp] = aHLRToShape.VCompound();
aVisible[HLRBRep_OutLine] = aHLRToShape.OutLineVCompound(); // extract visible outlines
aVisible[HLRBRep_RgNLine] = aHLRToShape.RgNLineVCompound();
if (toShowTangentEdges)
aVisible[HLRBRep_Rg1Line] = aHLRToShape.Rg1LineVCompound();
if (toShowCNEdges)
{
aVisible[HLRBRep_Rg1Line] = aHLRToShape.Rg1LineVCompound();
aVisible[HLRBRep_RgNLine] = aHLRToShape.RgNLineVCompound();
}
if (toShowHiddenEdges)
{
aHidden[HLRBRep_Sharp] = aHLRToShape.HCompound();
aHidden[HLRBRep_OutLine] = aHLRToShape.OutLineHCompound();
aHidden[HLRBRep_RgNLine] = aHLRToShape.RgNLineHCompound();
if (toShowTangentEdges)
aHidden[HLRBRep_Rg1Line] = aHLRToShape.Rg1LineHCompound();
if (toShowCNEdges)
{
aHidden[HLRBRep_Rg1Line] = aHLRToShape.Rg1LineHCompound();
aHidden[HLRBRep_RgNLine] = aHLRToShape.RgNLineHCompound();
}
}
}
@ -3249,10 +3249,10 @@ static int VComputeHLR (Draw_Interpretor& ,
HLRBRep_HLRToShape aHLRToShape (aHlrAlgo);
aVisible[HLRBRep_Sharp] = aHLRToShape.VCompound();
aVisible[HLRBRep_OutLine] = aHLRToShape.OutLineVCompound();
aVisible[HLRBRep_RgNLine] = aHLRToShape.RgNLineVCompound();
if (toShowTangentEdges)
aVisible[HLRBRep_Rg1Line] = aHLRToShape.Rg1LineVCompound();
if (toShowCNEdges)
{
aVisible[HLRBRep_Rg1Line] = aHLRToShape.Rg1LineVCompound();
aVisible[HLRBRep_RgNLine] = aHLRToShape.RgNLineVCompound();
}
aVisible[HLRBRep_IsoLine] = aHLRToShape.IsoLineVCompound();
@ -3260,10 +3260,10 @@ static int VComputeHLR (Draw_Interpretor& ,
{
aHidden[HLRBRep_Sharp] = aHLRToShape.HCompound();
aHidden[HLRBRep_OutLine] = aHLRToShape.OutLineHCompound();
aHidden[HLRBRep_RgNLine] = aHLRToShape.RgNLineHCompound();
if (toShowTangentEdges)
aHidden[HLRBRep_Rg1Line] = aHLRToShape.Rg1LineHCompound();
if (toShowCNEdges)
{
aHidden[HLRBRep_Rg1Line] = aHLRToShape.Rg1LineHCompound();
aHidden[HLRBRep_RgNLine] = aHLRToShape.RgNLineHCompound();
}
aHidden[HLRBRep_IsoLine] = aHLRToShape.IsoLineHCompound();
}

View File

@ -1,19 +0,0 @@
puts "============"
puts "OCC25813"
puts "============"
puts ""
######################################################
# regression in Hidden Line Removal
######################################################
pcylinder cc 10 30
pcylinder cc2 8 50
ttranslate cc2 0 0 2
bfuse result cc cc2
vinit
vdisplay result
vfit
vhlr on
vhlrtype algo result
checkview -screenshot -3d -path ${imagedir}/${test_image}.png

View File

@ -1,17 +0,0 @@
puts "============"
puts "OCC25813"
puts "============"
puts ""
######################################################
# regression in Hidden Line Removal
######################################################
restore [locate_data_file bug25813_hlr-bus1-draw-Fusion001.brep] result
vinit
vdisplay result
vfit
vhlr on
vhlrtype algo result
checkview -screenshot -3d -path ${imagedir}/${test_image}.png

View File

@ -1,16 +0,0 @@
puts "============"
puts "OCC25813"
puts "============"
puts ""
######################################################
# regression in Hidden Line Removal
######################################################
ptorus result 30 10
vinit
vdisplay result
vfit
vhlr on
vhlrtype algo result
checkview -screenshot -3d -path ${imagedir}/${test_image}.png

View File

@ -1,17 +0,0 @@
puts "============"
puts "OCC25813"
puts "============"
puts ""
######################################################
# regression in Hidden Line Removal
######################################################
restore [locate_data_file bug25813_hlr-test_normandc1m1-draw-Cut001.brep] result
vinit
vdisplay result
vfit
vhlr on
vhlrtype algo result
checkview -screenshot -3d -path ${imagedir}/${test_image}.png

View File

@ -1,17 +0,0 @@
puts "============"
puts "OCC25813"
puts "============"
puts ""
######################################################
# regression in Hidden Line Removal
######################################################
restore [locate_data_file bug25813_hlr-fillet2-tcl-f.brep] result
vinit
vdisplay result
vfit
vhlr on
vhlrtype algo result
checkview -screenshot -3d -path ${imagedir}/${test_image}.png

View File

@ -1,17 +0,0 @@
puts "============"
puts "OCC27341"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
restore [locate_data_file bug27341_hlrsave.brep] result
vinit
vdisplay result
vfit
vhlr on
vhlrtype algo result
checkview -screenshot -3d -path ${imagedir}/${test_image}.png

View File

@ -1,26 +0,0 @@
puts "============"
puts "OCC27341"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload QAcommands
restore [locate_data_file bug27341_save.brep] a
set viewname "axo"
smallview
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 319.505
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,26 +0,0 @@
puts "============"
puts "OCC27341"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload QAcommands
restore [locate_data_file bug27341_save.brep] a
set viewname "top"
smallview
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 291.117
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,26 +0,0 @@
puts "============"
puts "OCC27341"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload QAcommands
restore [locate_data_file bug27341_save.brep] a
set viewname "bottom"
smallview
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 334.113
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,26 +0,0 @@
puts "============"
puts "OCC27341"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload QAcommands
restore [locate_data_file bug27341_save.brep] a
set viewname "front"
smallview
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 361.806
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,26 +0,0 @@
puts "============"
puts "OCC27341"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload QAcommands
restore [locate_data_file bug27341_save.brep] a
set viewname "back"
smallview
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 430.307
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,25 +0,0 @@
puts "============"
puts "OCC27341"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload QAcommands
restore [locate_data_file bug27341_save.brep] a
set viewname "left"
smallview
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 278.784
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,25 +0,0 @@
puts "============"
puts "OCC27341"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload QAcommands
restore [locate_data_file bug27341_save.brep] a
set viewname "right"
smallview
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 337.535
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,26 +0,0 @@
puts "============"
puts "OCC27341"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload QAcommands
restore [locate_data_file bug27341_hlrsave.brep] a
set viewname "axo"
smallview
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 6.34998
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,26 +0,0 @@
puts "============"
puts "OCC27341"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload QAcommands
restore [locate_data_file bug27341_hlrsave.brep] a
set viewname "top"
smallview
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 8.05281
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,26 +0,0 @@
puts "============"
puts "OCC27341"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload QAcommands
restore [locate_data_file bug27341_hlrsave.brep] a
set viewname "bottom"
smallview
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 8.40409
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,26 +0,0 @@
puts "============"
puts "OCC27341"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload QAcommands
restore [locate_data_file bug27341_hlrsave.brep] a
set viewname "front"
smallview
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 7.39488
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,26 +0,0 @@
puts "============"
puts "OCC27341"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload QAcommands
restore [locate_data_file bug27341_hlrsave.brep] a
set viewname "back"
smallview
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 9.47163
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,26 +0,0 @@
puts "============"
puts "OCC27341"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload QAcommands
restore [locate_data_file bug27341_hlrsave.brep] a
set viewname "left"
smallview
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 7.42565
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,26 +0,0 @@
puts "============"
puts "OCC27341"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload QAcommands
restore [locate_data_file bug27341_hlrsave.brep] a
set viewname "right"
smallview
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 8.92009
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,27 +0,0 @@
puts "============"
puts "OCC27341"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload XDE
pload QAcommands
testreadstep [locate_data_file bug27341_15.3020_16B1_B3=90.stp] a
set viewname "right"
smallview
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 1030.62
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,27 +0,0 @@
puts "============"
puts "OCC27341"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload XDE
pload QAcommands
testreadstep [locate_data_file bug27341_211808_PCLNL12K8-15x32.stp] a
set viewname "right"
smallview
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 414.732
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,27 +0,0 @@
puts "============"
puts "OCC27341"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload XDE
pload QAcommands
testreadstep [locate_data_file bug27341_570-DWLNL-40-08-L_131LANG_16VERSATZ_DIN.stp] a
set viewname "right"
smallview
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 3249.9
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,27 +0,0 @@
puts "============"
puts "OCC27341"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload XDE
pload QAcommands
testreadstep [locate_data_file bug27341_82-01_Solid_End_Mill_Radius_with_Shrink_Fit_and_extension_HeavyModel.stp] a
set viewname "right"
smallview
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 2867.9
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,27 +0,0 @@
puts "============"
puts "OCC27341"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload XDE
pload QAcommands
testreadstep [locate_data_file bug27341_ABS_Adapter_CAD.stp] a
set viewname "right"
smallview
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 1760.66
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,27 +0,0 @@
puts "============"
puts "OCC27341"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload XDE
pload QAcommands
testreadstep [locate_data_file bug27341_ABS_Grundhalter_CAD.stp] a
set viewname "right"
smallview
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 2893.98
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,27 +0,0 @@
puts "============"
puts "OCC27341"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload XDE
pload QAcommands
testreadstep [locate_data_file bug27341_AIF_Grundhalter_GR1_CAD.stp] a
set viewname "right"
smallview
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 2282.11
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,27 +0,0 @@
puts "============"
puts "OCC27341"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload XDE
pload QAcommands
testreadstep [locate_data_file bug27341_AWN_Adapter_CAD.stp] a
set viewname "right"
smallview
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 1170.46
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,27 +0,0 @@
puts "============"
puts "OCC27341"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload XDE
pload QAcommands
testreadstep [locate_data_file bug27341_Adapter_MKG_SWS_CGS_CAD.stp] a
set viewname "right"
smallview
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 2010.95
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,27 +0,0 @@
puts "============"
puts "OCC27341"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload XDE
pload QAcommands
testreadstep [locate_data_file bug27341_Adapter_VDI_MKG_CAD.stp] a
set viewname "right"
smallview
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 778.117
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,27 +0,0 @@
puts "============"
puts "OCC27341"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload XDE
pload QAcommands
testreadstep [locate_data_file bug27341_Adapter_VLS_CAD.stp] a
set viewname "right"
smallview
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 1095.44
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,27 +0,0 @@
puts "============"
puts "OCC27341"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload XDE
pload QAcommands
testreadstep [locate_data_file bug27341_Adapter_Zylinder_2_CAD.stp] a
set viewname "right"
smallview
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 534.882
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,27 +0,0 @@
puts "============"
puts "OCC27341"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload XDE
pload QAcommands
testreadstep [locate_data_file bug27341_Assembly_ABS_1_CAD.stp] a
set viewname "right"
smallview
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 9662.5
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,27 +0,0 @@
puts "============"
puts "OCC27341"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload XDE
pload QAcommands
testreadstep [locate_data_file bug27341_Assembly_BILZ_WFL2_1_CAD.stp] a
set viewname "right"
smallview
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 5934.34
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,27 +0,0 @@
puts "============"
puts "OCC27341"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload XDE
pload QAcommands
testreadstep [locate_data_file bug27341_Assembly_GMS_Kurz_CAD.stp] a
set viewname "right"
smallview
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 5282.13
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,27 +0,0 @@
puts "============"
puts "OCC27341"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload XDE
pload QAcommands
testreadstep [locate_data_file bug27341_CCS_Adapter_CAD.stp] a
set viewname "right"
smallview
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 1794.57
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,27 +0,0 @@
puts "============"
puts "OCC27341"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload XDE
pload QAcommands
testreadstep [locate_data_file bug27341_CCT_PMK_32_L_o_CAD.stp] a
set viewname "right"
smallview
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 2704.1
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,26 +0,0 @@
puts "============"
puts "OCC27341"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload XDE
pload QAcommands
testreadstep [locate_data_file bug27341_CDI_Grundhalter_CAD.stp] a
set viewname "right"
smallview
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 2429.7
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,27 +0,0 @@
puts "============"
puts "OCC27341"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload XDE
pload QAcommands
testreadstep [locate_data_file bug27341_CKB_Adapter_CAD.stp] a
set viewname "right"
smallview
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 755.552
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,27 +0,0 @@
puts "============"
puts "OCC27341"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload XDE
pload QAcommands
testreadstep [locate_data_file bug27341_Drehkopf_HSK_Gewinde_R_CAD.stp] a
set viewname "right"
smallview
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 1726.77
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,27 +0,0 @@
puts "============"
puts "OCC27341"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload XDE
pload QAcommands
testreadstep [locate_data_file bug27341_Einsatz_BILZ_SEK_BFA_CAD.stp] a
set viewname "right"
smallview
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 949.574
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,27 +0,0 @@
puts "============"
puts "OCC27341"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload XDE
pload QAcommands
testreadstep [locate_data_file bug27341_HEE_Grundhalter_CAD.stp] a
set viewname "right"
smallview
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 6584.94
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,27 +0,0 @@
puts "============"
puts "OCC27341"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload XDE
pload QAcommands
testreadstep [locate_data_file bug27341_KMM_Adapter_CAD.stp] a
set viewname "right"
smallview
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 813.531
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,27 +0,0 @@
puts "============"
puts "OCC27341"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload XDE
pload QAcommands
testreadstep [locate_data_file bug27341_MZX_01_1_CAD.stp] a
set viewname "right"
smallview
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 211.007
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,27 +0,0 @@
puts "============"
puts "OCC27341"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload XDE
pload QAcommands
testreadstep [locate_data_file bug27341_Rundrohrverteiler.stp] a
set viewname "right"
smallview
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 6115.27
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,27 +0,0 @@
puts "============"
puts "OCC27341"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload XDE
pload QAcommands
testreadstep [locate_data_file bug27341_SKJ_07_CAD.stp] a
set viewname "right"
smallview
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 521.037
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,27 +0,0 @@
puts "============"
puts "OCC27341"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload XDE
pload QAcommands
testreadstep [locate_data_file bug27341_conboom.stp] a
set viewname "back"
smallview
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 48596.2
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,27 +0,0 @@
puts "============"
puts "OCC27341"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload XDE
pload QAcommands
testreadstep [locate_data_file bug27341_rhombisch_Form_V_IC_476_L_CAD.stp] a
set viewname "right"
smallview
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 40.3211
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,27 +0,0 @@
puts "============"
puts "OCC27341"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload XDE
pload QAcommands
testreadstep [locate_data_file bug27341_stp_ML_MN5260-18-K.stp] a
set viewname "right"
smallview
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 1126.76
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,26 +0,0 @@
puts "============"
puts "OCC27719"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload QAcommands
restore [locate_data_file bug27719_Extruded.brep] a
set viewname "axo"
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 4.04214
checknbshapes result -vertex 16 -edge 8
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,26 +0,0 @@
puts "============"
puts "OCC27719"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload QAcommands
restore [locate_data_file bug27719_Extruded.brep] a
set viewname "top"
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 5.79737
checknbshapes result -vertex 22 -edge 11
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,26 +0,0 @@
puts "============"
puts "OCC27719"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload QAcommands
restore [locate_data_file bug27719_Extruded.brep] a
set viewname "bottom"
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 6.15279
checknbshapes result -vertex 22 -edge 11
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,26 +0,0 @@
puts "============"
puts "OCC27719"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload QAcommands
restore [locate_data_file bug27719_Extruded.brep] a
set viewname "front"
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 7.45731
checknbshapes result -vertex 24 -edge 12
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,26 +0,0 @@
puts "============"
puts "OCC27719"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload QAcommands
restore [locate_data_file bug27719_Extruded.brep] a
set viewname "back"
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 7.48768
checknbshapes result -vertex 22 -edge 11
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,26 +0,0 @@
puts "============"
puts "OCC27719"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload QAcommands
restore [locate_data_file bug27719_Extruded2.brep] a
set viewname "axo"
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 4.53263
checknbshapes result -vertex 14 -edge 7
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,26 +0,0 @@
puts "============"
puts "OCC27719"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload QAcommands
restore [locate_data_file bug27719_Extruded2.brep] a
set viewname "top"
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 4.79563
checknbshapes result -vertex 16 -edge 8
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,26 +0,0 @@
puts "============"
puts "OCC27719"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload QAcommands
restore [locate_data_file bug27719_Extruded2.brep] a
set viewname "bottom"
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 4.64864
checknbshapes result -vertex 16 -edge 8
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,26 +0,0 @@
puts "============"
puts "OCC27719"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload QAcommands
restore [locate_data_file bug27719_Extruded2.brep] a
set viewname "front"
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 5.96312
checknbshapes result -vertex 16 -edge 8
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,26 +0,0 @@
puts "============"
puts "OCC27719"
puts "============"
puts ""
######################################################
# Incorrect exact HLR results
######################################################
pload QAcommands
restore [locate_data_file bug27719_Extruded2.brep] a
set viewname "back"
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 5.61843
checknbshapes result -vertex 16 -edge 8
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,26 +0,0 @@
puts "============"
puts "OCC27720"
puts "============"
puts ""
######################################################
# HLRBrep_Algo BSpline missing edges
######################################################
pload QAcommands
restore [locate_data_file bug27720_BSpline.brep] a
set viewname "axo"
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 0.883462
checknbshapes result -vertex 84 -edge 42
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,26 +0,0 @@
puts "============"
puts "OCC27720"
puts "============"
puts ""
######################################################
# HLRBrep_Algo BSpline missing edges
######################################################
pload QAcommands
restore [locate_data_file bug27720_BSpline.brep] a
set viewname "top"
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 0.980943
checknbshapes result -vertex 60 -edge 30
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,26 +0,0 @@
puts "============"
puts "OCC27720"
puts "============"
puts ""
######################################################
# HLRBrep_Algo BSpline missing edges
######################################################
pload QAcommands
restore [locate_data_file bug27720_BSpline.brep] a
set viewname "bottom"
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 0.958458
checknbshapes result -vertex 54 -edge 27
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,26 +0,0 @@
puts "============"
puts "OCC27720"
puts "============"
puts ""
######################################################
# HLRBrep_Algo BSpline missing edges
######################################################
pload QAcommands
restore [locate_data_file bug27720_BSpline.brep] a
set viewname "left"
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 0.820309
checknbshapes result -vertex 70 -edge 35
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,26 +0,0 @@
puts "============"
puts "OCC27720"
puts "============"
puts ""
######################################################
# HLRBrep_Algo BSpline missing edges
######################################################
pload QAcommands
restore [locate_data_file bug27720_BSpline.brep] a
set viewname "right"
top
clear
OCC27341 result a ${viewname}
build3d result
fit
checkprops result -l 0.841499
checknbshapes result -vertex 92 -edge 46
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -1,14 +0,0 @@
puts "========"
puts "0029956: HLR polygonal algorithm: regression in 7.1 relative to 7.0"
puts "========"
puts ""
pload XSDRAW
testreadstep [locate_data_file example_auto_tooling_01.stp] s
vinit
vdisplay s
vfit
vhlrtype polyAlgo s
vhlr on
vdump ${imagedir}/${casename}.png

View File

@ -1,14 +0,0 @@
puts "========"
puts "0030243: Regression in HLR PolyAlgo in OCCT 7.1.0"
puts "========"
puts ""
pload XSDRAW
testreadstep [locate_data_file BFC_10000.stp] s
vinit
vdisplay s
vfit
vhlrtype polyAlgo s
vhlr on
vdump ${imagedir}/${casename}.png

22
tests/hlr/begin Normal file
View File

@ -0,0 +1,22 @@
pload TOPTEST
pload XDE
pload VISUALIZATION
if { [info exists imagedir] == 0 } {
set imagedir .
}
set depsilon 1.e-7
proc COMPUTE_HLR {viewname algotype} {
uplevel #0 top
uplevel #0 clear
uplevel #0 vinit
uplevel #0 vdisplay a
uplevel #0 $viewname
uplevel #0 vcomputehlr a result -algoType $algotype
uplevel #0 fit
if { [string compare $algotype "algo"] == 0 } {
uplevel #0 build3d result
}
}

6
tests/hlr/end Normal file
View File

@ -0,0 +1,6 @@
checkprops result -l ${length} -deps ${depsilon}
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
# to end a test script
puts "TEST COMPLETED"

10
tests/hlr/exact_hlr/A1 Normal file
View File

@ -0,0 +1,10 @@
puts "====================================="
puts "OCC27341: Incorrect exact HLR results"
puts "====================================="
puts ""
set viewname ""
set length 6.34984
restore [locate_data_file bug27341_hlrsave.brep] a
COMPUTE_HLR $viewname $algotype

10
tests/hlr/exact_hlr/A2 Normal file
View File

@ -0,0 +1,10 @@
puts "====================================="
puts "OCC27341: Incorrect exact HLR results"
puts "====================================="
puts ""
set viewname "vtop"
set length 8.05281
restore [locate_data_file bug27341_hlrsave.brep] a
COMPUTE_HLR $viewname $algotype

10
tests/hlr/exact_hlr/A3 Normal file
View File

@ -0,0 +1,10 @@
puts "====================================="
puts "OCC27341: Incorrect exact HLR results"
puts "====================================="
puts ""
set viewname "vbottom"
set length 8.40404
restore [locate_data_file bug27341_hlrsave.brep] a
COMPUTE_HLR $viewname $algotype

10
tests/hlr/exact_hlr/A4 Normal file
View File

@ -0,0 +1,10 @@
puts "====================================="
puts "OCC27341: Incorrect exact HLR results"
puts "====================================="
puts ""
set viewname "vfront"
set length 7.39488
restore [locate_data_file bug27341_hlrsave.brep] a
COMPUTE_HLR $viewname $algotype

10
tests/hlr/exact_hlr/A5 Normal file
View File

@ -0,0 +1,10 @@
puts "====================================="
puts "OCC27341: Incorrect exact HLR results"
puts "====================================="
puts ""
set viewname "vback"
set length 9.47163
restore [locate_data_file bug27341_hlrsave.brep] a
COMPUTE_HLR $viewname $algotype

10
tests/hlr/exact_hlr/A6 Normal file
View File

@ -0,0 +1,10 @@
puts "====================================="
puts "OCC27341: Incorrect exact HLR results"
puts "====================================="
puts ""
set viewname "vleft"
set length 7.42565
restore [locate_data_file bug27341_hlrsave.brep] a
COMPUTE_HLR $viewname $algotype

10
tests/hlr/exact_hlr/A7 Normal file
View File

@ -0,0 +1,10 @@
puts "====================================="
puts "OCC27341: Incorrect exact HLR results"
puts "====================================="
puts ""
set viewname "vright"
set length 8.92009
restore [locate_data_file bug27341_hlrsave.brep] a
COMPUTE_HLR $viewname $algotype

10
tests/hlr/exact_hlr/B1 Normal file
View File

@ -0,0 +1,10 @@
puts "====================================="
puts "OCC27341: Incorrect exact HLR results"
puts "====================================="
puts ""
set viewname ""
set length 319.505
restore [locate_data_file bug27341_save.brep] a
COMPUTE_HLR $viewname $algotype

10
tests/hlr/exact_hlr/B2 Normal file
View File

@ -0,0 +1,10 @@
puts "====================================="
puts "OCC27341: Incorrect exact HLR results"
puts "====================================="
puts ""
set viewname "vtop"
set length 291.123
restore [locate_data_file bug27341_save.brep] a
COMPUTE_HLR $viewname $algotype

10
tests/hlr/exact_hlr/B3 Normal file
View File

@ -0,0 +1,10 @@
puts "====================================="
puts "OCC27341: Incorrect exact HLR results"
puts "====================================="
puts ""
set viewname "vbottom"
set length 334.113
restore [locate_data_file bug27341_save.brep] a
COMPUTE_HLR $viewname $algotype

10
tests/hlr/exact_hlr/B4 Normal file
View File

@ -0,0 +1,10 @@
puts "====================================="
puts "OCC27341: Incorrect exact HLR results"
puts "====================================="
puts ""
set viewname "vfront"
set length 361.806
restore [locate_data_file bug27341_save.brep] a
COMPUTE_HLR $viewname $algotype

10
tests/hlr/exact_hlr/B5 Normal file
View File

@ -0,0 +1,10 @@
puts "====================================="
puts "OCC27341: Incorrect exact HLR results"
puts "====================================="
puts ""
set viewname "vback"
set length 430.307
restore [locate_data_file bug27341_save.brep] a
COMPUTE_HLR $viewname $algotype

10
tests/hlr/exact_hlr/B6 Normal file
View File

@ -0,0 +1,10 @@
puts "====================================="
puts "OCC27341: Incorrect exact HLR results"
puts "====================================="
puts ""
set viewname "vleft"
set length 278.789
restore [locate_data_file bug27341_save.brep] a
COMPUTE_HLR $viewname $algotype

10
tests/hlr/exact_hlr/B7 Normal file
View File

@ -0,0 +1,10 @@
puts "====================================="
puts "OCC27341: Incorrect exact HLR results"
puts "====================================="
puts ""
set viewname "vright"
set length 337.54
restore [locate_data_file bug27341_save.brep] a
COMPUTE_HLR $viewname $algotype

5
tests/hlr/exact_hlr/C1 Normal file
View File

@ -0,0 +1,5 @@
set viewname "vright"
set length 1038.62
testreadstep [locate_data_file bug27341_15.3020_16B1_B3=90.stp] a
COMPUTE_HLR $viewname $algotype

5
tests/hlr/exact_hlr/C10 Normal file
View File

@ -0,0 +1,5 @@
set viewname "vright"
set length 778.091
testreadstep [locate_data_file bug27341_Adapter_VDI_MKG_CAD.stp] a
COMPUTE_HLR $viewname $algotype

5
tests/hlr/exact_hlr/C11 Normal file
View File

@ -0,0 +1,5 @@
set viewname "vright"
set length 1095.44
testreadstep [locate_data_file bug27341_Adapter_VLS_CAD.stp] a
COMPUTE_HLR $viewname $algotype

5
tests/hlr/exact_hlr/C12 Normal file
View File

@ -0,0 +1,5 @@
set viewname "vright"
set length 533.738
testreadstep [locate_data_file bug27341_Adapter_Zylinder_2_CAD.stp] a
COMPUTE_HLR $viewname $algotype

7
tests/hlr/exact_hlr/C13 Normal file
View File

@ -0,0 +1,7 @@
puts "TODO OCC30286 ALL: Error : The length of result shape is 9589.21, expected 9547.11"
set viewname "vright"
set length 9547.11
testreadstep [locate_data_file bug27341_Assembly_ABS_1_CAD.stp] a
COMPUTE_HLR $viewname $algotype

5
tests/hlr/exact_hlr/C14 Normal file
View File

@ -0,0 +1,5 @@
set viewname "vright"
set length 5934.34
testreadstep [locate_data_file bug27341_Assembly_BILZ_WFL2_1_CAD.stp] a
COMPUTE_HLR $viewname $algotype

5
tests/hlr/exact_hlr/C15 Normal file
View File

@ -0,0 +1,5 @@
set viewname "vright"
set length 5282.13
testreadstep [locate_data_file bug27341_Assembly_GMS_Kurz_CAD.stp] a
COMPUTE_HLR $viewname $algotype

5
tests/hlr/exact_hlr/C16 Normal file
View File

@ -0,0 +1,5 @@
set viewname "vright"
set length 1794.57
testreadstep [locate_data_file bug27341_CCS_Adapter_CAD.stp] a
COMPUTE_HLR $viewname $algotype

5
tests/hlr/exact_hlr/C17 Normal file
View File

@ -0,0 +1,5 @@
set viewname "vright"
set length 2704.1
testreadstep [locate_data_file bug27341_CCT_PMK_32_L_o_CAD.stp] a
COMPUTE_HLR $viewname $algotype

7
tests/hlr/exact_hlr/C18 Normal file
View File

@ -0,0 +1,7 @@
puts "TODO OCC30286 Windows: Error : The length of result shape is 2409.86, expected 2418.08"
set viewname "vright"
set length 2418.08
testreadstep [locate_data_file bug27341_CDI_Grundhalter_CAD.stp] a
COMPUTE_HLR $viewname $algotype

5
tests/hlr/exact_hlr/C19 Normal file
View File

@ -0,0 +1,5 @@
set viewname "vright"
set length 753.392
testreadstep [locate_data_file bug27341_CKB_Adapter_CAD.stp] a
COMPUTE_HLR $viewname $algotype

7
tests/hlr/exact_hlr/C2 Normal file
View File

@ -0,0 +1,7 @@
puts "TODO OCC30286 ALL: Error : The length of result shape is 414.732, expected 443.438"
set viewname "vright"
set length 443.438
testreadstep [locate_data_file bug27341_211808_PCLNL12K8-15x32.stp] a
COMPUTE_HLR $viewname $algotype

7
tests/hlr/exact_hlr/C20 Normal file
View File

@ -0,0 +1,7 @@
puts "TODO OCC30286 ALL: Error : The length of result shape is 1736.91, expected 1704.87"
set viewname "vright"
set length 1704.87
testreadstep [locate_data_file bug27341_Drehkopf_HSK_Gewinde_R_CAD.stp] a
COMPUTE_HLR $viewname $algotype

5
tests/hlr/exact_hlr/C21 Normal file
View File

@ -0,0 +1,5 @@
set viewname "vright"
set length 949.573
testreadstep [locate_data_file bug27341_Einsatz_BILZ_SEK_BFA_CAD.stp] a
COMPUTE_HLR $viewname $algotype

5
tests/hlr/exact_hlr/C22 Normal file
View File

@ -0,0 +1,5 @@
set viewname "vright"
set length 6601.8
testreadstep [locate_data_file bug27341_HEE_Grundhalter_CAD.stp] a
COMPUTE_HLR $viewname $algotype

5
tests/hlr/exact_hlr/C23 Normal file
View File

@ -0,0 +1,5 @@
set viewname "vright"
set length 813.531
testreadstep [locate_data_file bug27341_KMM_Adapter_CAD.stp] a
COMPUTE_HLR $viewname $algotype

Some files were not shown because too many files have changed in this diff Show More