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.
13 lines
284 B
Plaintext
13 lines
284 B
Plaintext
sphere surf 1
|
|
convert surf surf
|
|
mkface f surf
|
|
getanasurf asurf f sph 1.e-7
|
|
if {[isdraw asurf]} {
|
|
set log [dump asurf]
|
|
if { [regexp {SphericalSurface} $log ] != 1 } {
|
|
puts "Error: surface is not a spherical surface"
|
|
}
|
|
} else {
|
|
puts "Error: required surface is not got"
|
|
}
|