mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
draw_test_harness.md - description of new options in Draw commands AppDef_BSplineCompute.hxx, BRepApprox_TheComputeLineOfApprox.hxx, GeomInt_TheComputeLineOfWLApprox.hxx, Approx_BSplComputeLine.gxx - implementation of method SetPeriodic(...) and implementation periodic boundary conditions for multiline in order to get periodic multicurve. GeomAPI_PointsToBSplineSurface.hxx, GeomAPI_PointsToBSplineSurface.cxx - adding new parameter for methods Init(...) and Interpolate(...), implementation of building periodic tangents for first and last AppDef_MultiPointConstraint of multiline for U direction of surface. GeometryTest_APICommands.cxx - implementation of new functionality in Draw command surfapp and surfint GeomFill_NSections.cxx Fixing problem with bugs modalg_3 bug606_2
31 lines
692 B
Plaintext
31 lines
692 B
Plaintext
puts "========"
|
|
puts "OCC30621"
|
|
puts "========"
|
|
puts "Implementation of building periodical surfaces by GeomAPI_PointsToBSplineSurface"
|
|
puts "========"
|
|
|
|
cylinder cc 1
|
|
trimv cc cc 0 1
|
|
surfint ri cc 11 3 1
|
|
surfapp ra 11 3 cc 1
|
|
|
|
if { [regexp "Continuity Status : C1" [surfaceCcontinuity 1 ri 0 .5 ri 1 .5]] == 1 } {
|
|
|
|
puts "OK : Good result of interpolation"
|
|
|
|
} else {
|
|
|
|
puts "Error : periodic interpolation fails"
|
|
|
|
}
|
|
if { [regexp "Continuity Status : C1" [surfaceCcontinuity 1 ra 0 .5 ra 1 .5]] == 1 } {
|
|
|
|
puts "OK : Good result of approximation"
|
|
|
|
} else {
|
|
|
|
puts "Error : periodic approximation fails"
|
|
|
|
}
|
|
checkview -display ri -with ra -2d -path ${imagedir}/${test_image}.png
|