mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
GeomConvert_CurveToAnaCurve, GeomConvert_SurfToAnaSurf - geometrical algorithms for converting geometrical curve and surfaces in canonical geometry with given tolerance. ShapeAnalysis_CanonicalRecognition - interface for checking canonical geometry.
14 lines
252 B
Plaintext
14 lines
252 B
Plaintext
beziercurve bz 3 0 0 0 .5 .5e-3 0 1 0 0
|
|
mkedge e bz
|
|
getanacurve c e lin 1.e-3
|
|
if {[isdraw c]} {
|
|
set log [dump c]
|
|
if { [regexp {Line} $log ] != 1 } {
|
|
puts "Error: curve is not a line"
|
|
}
|
|
} else {
|
|
puts "Error: required curve is not got"
|
|
}
|
|
|
|
|