mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
AIS_ColoredShape::Compute() - improve logic to split input shape into Closed and Open volumes with back-face culling enabled when possible. Change last argument of method StdPrs_ShadedShape::Add() from boolean to enumeration StdPrs_Volume which controls parsing of Closed/Open volumes within input shape. Make method StdPrs_ShadedShape::ExploreSolids() public. Extend Draw Harness command vaspects with option -setvisibility to hide subshape (using AIS_ColoredShape). Add new test cases bugs/bis/bug25687_1 and bugs/bis/bug25687_2. the logic of bindSubShapes method clarified Conflicts: src/AIS/AIS_ColoredShape.cxx AIS_ColoredShape::dispatchColors considers the colors of displayed shapes in connection with specific priority the color of specific shape can be exported from several ways: the color of this shape, the color of a compound containing this shape. The highest priority has the color of shape than the one of the compound. The color with highest priority will be displayed. This patch accounts for the highest priority of the shape color. For example: w - wire has GREEN color; e - edge has RED color; "w" contains "e"; all edges of "w" will be displayed in GREEN color except "e" edge, it will be displayed in RED color Added sample generating model of Intel i7-4790 CPU on which the problem can be reproduced
65 lines
1.2 KiB
Tcl
65 lines
1.2 KiB
Tcl
# Sample demonstrating assignment of colors to faces in XDE
|
|
|
|
#Category: XDE
|
|
#Title: Assignment of colors to faces
|
|
|
|
pload MODELING VISUALIZATION OCAF XDE
|
|
|
|
box b 0 -20 -10 100 40 20
|
|
compound b b b a
|
|
explode a
|
|
trotate a_1 0 0 0 1 0 0 60
|
|
trotate a_2 0 0 0 1 0 0 -60
|
|
bcommon b a a_1
|
|
bcommon b b a_2
|
|
|
|
pcylinder c 4 100
|
|
trotate c 0 0 0 0 1 0 90
|
|
|
|
psphere s 1.4
|
|
ttranslate s 99.2 0 0
|
|
bfuse cx c s
|
|
|
|
pcone e 60 0.5 101
|
|
trotate e 0 0 0 0 1 0 90
|
|
|
|
bcommon body b e
|
|
bcut body body c
|
|
bcommon core cx e
|
|
|
|
text2brep text "CAD Assistant" Times 10
|
|
ttranslate text 10 -4 10
|
|
prism tr text 0 0 -1
|
|
bfuse body body tr
|
|
|
|
donly body core
|
|
|
|
#vdisplay body core
|
|
#vsetcolor body yellow
|
|
#vsetcolor core red
|
|
|
|
explode body so
|
|
explode body_1 f
|
|
explode core so
|
|
|
|
NewDocument D
|
|
XAddShape D body_1
|
|
XAddShape D core_1
|
|
|
|
#XSetColor D body_1 0. 0. 1.
|
|
for {set i 1} {$i <= 26} {incr i} {XSetColor D body_1_$i 0. 0. 1.}
|
|
XSetColor D body_1_1 0.9 0.5 0.4
|
|
XSetColor D body_1_9 0.9 0.5 0.4
|
|
for {set i 10} {$i <= 22} {incr i} {XSetColor D body_1_$i 0.6 0.7 0.0}
|
|
XSetColor D core_1 0.1 0.1 1.
|
|
foreach ff [explode core_1 f] { XSetColor D $ff 0.1 0.1 1. ; puts "set color $ff" }
|
|
|
|
XShow D
|
|
|
|
vfit
|
|
vsetdispmode 1
|
|
vsetcolorbg 255 255 255
|
|
|
|
#param write.iges.brep.mode 1
|
|
#WriteIges D d:/pencil3.igs
|