1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
ifv b47b075ac5 0032995: Modeling algorithms - Interface for checking canonical geometry
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.
2022-07-08 19:26:37 +03:00

16 lines
343 B
Plaintext

plane pl 0 0 0 1 1 1
pcone con pl 2 1 3 60
explode con w
nurbsconvert w con_1
cone con 0.1 .1 .1 1 1 1 -17 1.9
getanasurf res w con 1.e-3 con
if {[isdraw res]} {
set log [dump res]
if { [regexp {ConicalSurface} $log ] != 1 } {
puts "Error: surface is not a conical surface"
}
} else {
puts "Error: required surface is not got"
}