mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
1. B-spline cache was moved into separated classes: BSplCLib_Cache for 2D and 3D curves and BSplSLib_Cache for surfaces. 2. The cache is used now in corresponding adaptor classes (Geom2dAdaptor_Curve, GeomAdaptor_Curve and GeomAdaptor_Surface) when the curve or surface is a B-spline. 3. Algorithms were changed to use adaptors for B-spline calculations instead of curves or surfaces. 4. Precised calculation of derivatives of surface of revolution is implemented for the points of surface placed on the axis of revolution (Geom_SurfaceOfRevolution.cxx) 5. Small modifications are made to adjust algorithms to new behavior of B-spline calculation. 6. Test cases were modified according to the modern behavior. 7. Changes in BOPAlgo_WireSplitter, BOPTools_AlgoTools, BRepLib_CheckCurveOnSurface and ShapeAnalysis_Wire to use adaptors instead of geometric entities 8. Allow Geom2dAdaptor and GeomAdaptor in case of offset curve to use corresponding adaptor for basis curve Modification of test-cases according to the new behavior.
41 lines
1.1 KiB
Plaintext
Executable File
41 lines
1.1 KiB
Plaintext
Executable File
puts "============"
|
|
puts "CR25207"
|
|
puts "==========="
|
|
puts ""
|
|
###############################################################################
|
|
# GCPnts_QuasiUniformDeflection achieves incorrect result on some curve.
|
|
###############################################################################
|
|
|
|
restore [locate_data_file bug25207_DumpShape2.brep] cc
|
|
mkcurve cc cc
|
|
|
|
set info [crvpoints r cc 1.e-3]
|
|
|
|
set str1 "Nb points +: +(\[-0-9.+eE\]+)\n"
|
|
set str2 "Max defl: +(\[-0-9.+eE\]+) +(\[-0-9.+eE\]+) +(\[-0-9.+eE\]+) +(\[-0-9.+eE\]+)"
|
|
|
|
regexp "${str1}${str2}" ${info} full Nb dmax ufmax ulmax i
|
|
|
|
set expected_Nb 76
|
|
if { ${Nb} != ${expected_Nb} } {
|
|
puts "Error : bad value of Nb points=${Nb}"
|
|
}
|
|
|
|
set tol_abs 1.0e-05
|
|
set tol_rel 0.01
|
|
|
|
set expected_dmax 0.0013771610718045313
|
|
set expected_ufmax 0.953125
|
|
|
|
checkreal "dmax" ${dmax} ${expected_dmax} ${tol_abs} ${tol_rel}
|
|
checkreal "ufmax" ${ufmax} ${expected_ufmax} ${tol_abs} ${tol_rel}
|
|
|
|
set expected_ulmax 0.96875
|
|
if { ${ulmax} != ${expected_ulmax} } {
|
|
puts "Error : bad value of ulmax=${ulmax}"
|
|
}
|
|
set expected_i 73
|
|
if { ${i} != ${expected_i} } {
|
|
puts "Error : bad value of i=${i}"
|
|
}
|