mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
22 lines
420 B
Plaintext
Executable File
22 lines
420 B
Plaintext
Executable File
|
|
puts "========"
|
|
puts "BUC60924"
|
|
puts "========"
|
|
puts ""
|
|
|
|
##################################################
|
|
## ShapeAnalysisStd_Curve::IsPlanar works incorrectly with a conic curve.
|
|
##################################################
|
|
|
|
pload QAcommands
|
|
|
|
ellipse el 0 0 1 20 10
|
|
|
|
set result1 [BUC60924 el 0 0 1]
|
|
|
|
if {${result1} != "The curve is planar !\n"} {
|
|
puts "BUC60924: Error"
|
|
} else {
|
|
puts "BUC60924: OK"
|
|
}
|