1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/tests/bugs/vis/bug27739
kgv aaf8d6a98d 0030969: Coding Rules - refactor Quantity_Color.cxx color table definition
The table of named colors has been compressed and moved out
from Quantity_Color.cxx into Quantity_ColorTable.pxx.

Quantity_NameOfColor - grayscale enumeration values have been re-ordered to fix discontinuity.
Duplicating colors has been merged within enumeration:
  CHARTREUSE=CHARTREUSE1, GOLD=GOLD1, GREEN=GREEN1, ORANGE=ORANGE1,
  ORANGERED=ORANGERED1, RED=RED1, TOMATO=TOMATO1, YELLOW=YELLOW1.
Added aliases to several other common colors:
  BLUE=BLUE1, CYAN=CYAN1, LIGHTCYAN=LIGHTCYAN1, MAGENTA=MAGENTA1.

Quantity_Color class definition has been cleaned to follow OCCT coding style.
Quantity_Color now stores NCollection_Vec3<float> as class field instead of separate components.
Removed unused class Quantity_ColorDefinitionError.

New methods Quantity_Color::Convert_LinearRGB_To_sRGB() and Quantity_Color::Convert_sRGB_To_LinearRGB()
converting RGB components from linear to non-linear sRGB colorspace and vice versa.
Image_PixMap::PixelColor() and Image_PixMap::SetPixelColor() methods have been extended
with an optional argument for performing linearization/delinearization of 8-bit sRGB pixel formats.

Draw Harness command AISColor has been corrected to take color name instead of enumeration index.
2019-10-22 15:15:51 +03:00

82 lines
2.6 KiB
Plaintext

puts "========"
puts "OCC27739"
puts "========"
puts ""
##################################################################
puts "Visualization, TKV3d - implement individual acceleration data structure for selection of 2D persistent objects"
##################################################################
# Create view
set win_width 409
set win_height 409
vinit View1 w=$win_width h=$win_height
vclear
# Display several different presentation types with orthographic camera
vcamera -ortho
vtrihedron tri1
box box3d 100 100 100
box box2d 100 100 1
box box2d_pos 100 100 1
box box2d_loc 100 100 1
box box_zoom 100 100 100
vdisplay box3d -dispMode 1 -highMode 0
vdisplay box2d -dispMode 1 -highMode 1 -2d center
vdisplay box2d_pos -dispMode 1 -highMode 1 -2d bottomLeft
vdisplay box2d_loc -dispMode 1 -highMode 1 -2d center
vdisplay box_zoom -dispMode 1 -highMode 0 -trsfPers zoom
vdisplay box2d
vsetlocation box2d_loc 100 0 0
vsetlocation box_zoom -100 -100 100
vsetmaterial box3d box2d box2d_pos box2d_loc box_zoom PLASTIC
vsetcolor box3d GOLD
vsetcolor box2d GREEN
vsetcolor box2d_pos GREEN
vsetcolor box2d_loc GREEN
vsetcolor box_zoom RED
vfit
# ==========================================
# Test selection for orthographic projection
# ==========================================
set test_1 {220 120}; # box2d
set test_2 {350 150}; # box2d_pos
set test_3 { 50 350}; # box2d_loc
vmoveto {*}$test_1
if {[vreadpixel {*}$test_1 name] != "CYAN 1"} { puts "ERROR: zoom persistent box is not detected!" }
vdump $imagedir/${casename}_1.png
vmoveto {*}$test_2
if {[vreadpixel {*}$test_2 name] != "CYAN 1"} { puts "ERROR: zoom persistent box is not detected!" }
vdump $imagedir/${casename}_2.png
vmoveto {*}$test_3
if {[vreadpixel {*}$test_3 name] != "CYAN 1"} { puts "ERROR: zoom persistent box is not detected!" }
vdump $imagedir/${casename}_3.png
# =========================================
# Test selection for perspective projection
# =========================================
vcamera -persp
vcamera -distance 1000
set test_1 {220 120}; # box2d
set test_2 {350 150}; # box2d_pos
set test_3 { 50 350}; # box2d_loc
vmoveto {*}$test_1
if {[vreadpixel {*}$test_1 name] != "CYAN 1"} { puts "ERROR: zoom persistent box is not detected!" }
vdump $imagedir/${casename}_4.png
vmoveto {*}$test_2
if {[vreadpixel {*}$test_2 name] != "CYAN 1"} { puts "ERROR: zoom persistent box is not detected!" }
vdump $imagedir/${casename}_5.png
vmoveto {*}$test_3
if {[vreadpixel {*}$test_3 name] != "CYAN 1"} { puts "ERROR: zoom persistent box is not detected!" }
vdump $imagedir/${casename}_6.png