mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
37 lines
806 B
Plaintext
Executable File
37 lines
806 B
Plaintext
Executable File
#INTERFACE CAF
|
|
# Presentation attributes
|
|
#
|
|
# Testing attribute: TPrsStd_AISPresentation
|
|
#
|
|
# Testing command: AISHasOwnColor
|
|
# Note: After a start: AISHasOwnColor = false ( int 0 )
|
|
#
|
|
|
|
puts "caf003-B1"
|
|
|
|
# Set NamedShape attribute
|
|
box aBox1 100 200 300
|
|
set aLabel 0:2
|
|
SetShape D ${aLabel} aBox1
|
|
|
|
# Initialize 3D viewer
|
|
AISInitViewer D
|
|
|
|
# Add AISPresentation attribute with parameter NS
|
|
AISSet D ${aLabel} NS
|
|
|
|
# Display presentation of NamedShape in the viewer
|
|
AISDisplay D ${aLabel}
|
|
|
|
# Check own color
|
|
set HasOwnColor [AISHasOwnColor D ${aLabel}]
|
|
|
|
puts "It is not necessary to have the photo for this case."
|
|
|
|
if { ${HasOwnColor} > 0 } {
|
|
puts "HasOwnColor=${HasOwnColor}"
|
|
puts "There is own color; AISHasOwnColor command: Error"
|
|
return
|
|
}
|
|
puts "There is not own color; AISHasOwnColor command: OK"
|