mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Subdivision of curve parametric interval based on deflection criteria is added for curve type OtherCurve in Extrema_GExtPC.gxx. Algorithm of subdivision is implemented in Extrema_Curve(2d)Tool.cxx New Draw command projpcurve for projection of point on CurveOnSurface is added in SWDRAW_ShapeAnalysis.cxx projpcurve is modified to reflect "start parameter" in usage message and Draw help.
17 lines
542 B
Plaintext
17 lines
542 B
Plaintext
puts "========"
|
|
puts "OCC28346"
|
|
puts "========"
|
|
puts ""
|
|
#################################################
|
|
# Function ProjectOnSegments of ShapeAnalysis_Curve
|
|
# returns only single solution leading to projection
|
|
# result far from optimal
|
|
#################################################
|
|
|
|
restore [locate_data_file bug28346.brep] f
|
|
explode f e
|
|
|
|
regexp {Dist: ([-0-9.+eE]+)} [projpcurve f_4 f 0.5 169.29762271743246 -75.660813304433930 1040.0634215916459] full dd
|
|
if { abs($dd - 0.1685) > 0.0001 } { puts "Error : Projection is incorrect" }
|
|
|