mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-02 17:46:22 +03:00
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.
77 lines
2.3 KiB
Tcl
77 lines
2.3 KiB
Tcl
# Markers demo
|
|
#
|
|
# It shows the various marker types supported by OCCT.
|
|
|
|
#Category: Visualization
|
|
#Title: Markers in 3d viewer
|
|
|
|
pload MODELING VISUALIZATION
|
|
|
|
# reflects Aspect_TypeOfMarker enumeration
|
|
set aMarkerTypeNames {
|
|
Aspect_TOM_POINT
|
|
Aspect_TOM_PLUS
|
|
Aspect_TOM_STAR
|
|
Aspect_TOM_X
|
|
Aspect_TOM_O
|
|
Aspect_TOM_O_POINT
|
|
Aspect_TOM_O_PLUS
|
|
Aspect_TOM_O_STAR
|
|
Aspect_TOM_O_X
|
|
Aspect_TOM_RING1
|
|
Aspect_TOM_RING2
|
|
Aspect_TOM_RING3
|
|
Aspect_TOM_BALL
|
|
Aspect_TOM_USERDEFINED
|
|
}
|
|
|
|
# custom marker
|
|
set aCustom1 [locate_data_file images/marker_box1.png]
|
|
set aCustom2 [locate_data_file images/marker_box2.png]
|
|
set aCustom3 [locate_data_file images/marker_kr.png]
|
|
set aCustom4 [locate_data_file images/marker_dot.png]
|
|
|
|
set aFontFile ""
|
|
catch { set aFontFile [locate_data_file DejaVuSans.ttf] }
|
|
set aLabelFont "Arial"
|
|
if { "$aFontFile" != "" } {
|
|
vfont add "$aFontFile" SansFont
|
|
set aLabelFont "SansFont"
|
|
}
|
|
|
|
# reset the viewer
|
|
vclear
|
|
vclose ALL
|
|
vinit name=View1 l=32 t=32 w=512 h=512
|
|
|
|
puts "Draw box in advance which should fit all our markers"
|
|
box b -8 -8 0 16 16 2
|
|
vbottom
|
|
vdisplay -noupdate -dispmode 0 b
|
|
vfit
|
|
vremove -noupdate b
|
|
|
|
puts "Draw markers of different type and size"
|
|
for { set aMarkerType 0 } { $aMarkerType <= 13 } { incr aMarkerType } {
|
|
set aRow [expr $aMarkerType - 7]
|
|
set aCol 5
|
|
set aName [lindex $aMarkerTypeNames $aMarkerType]
|
|
vdrawtext "$aName" "$aName" -pos 0 [expr $aRow + 0.5] 0 -color 7FFFFF -halign center -valign center -angle 000 -zoom 0 -height 12 -aspect bold -font $aLabelFont -noupdate
|
|
vdisplay -top -noupdate "$aName"
|
|
if { $aMarkerType == 13 } {
|
|
vmarkerstest m${aMarkerType}_${aCol} $aCol $aRow 0 PointsOnSide=1 FileName=$aCustom1
|
|
set aCol [expr $aCol - 1]
|
|
vmarkerstest m${aMarkerType}_${aCol} $aCol $aRow 0 PointsOnSide=1 FileName=$aCustom2
|
|
set aCol [expr $aCol - 1]
|
|
vmarkerstest m${aMarkerType}_${aCol} $aCol $aRow 0 PointsOnSide=1 FileName=$aCustom3
|
|
set aCol [expr $aCol - 1]
|
|
vmarkerstest m${aMarkerType}_${aCol} $aCol $aRow 0 PointsOnSide=1 FileName=$aCustom4
|
|
} else {
|
|
for { set aMarkerScale 1.0 } { $aMarkerScale <= 7 } { set aMarkerScale [expr $aMarkerScale + 0.5] } {
|
|
vmarkerstest m${aMarkerType}_${aCol} $aCol $aRow 0 MarkerType=$aMarkerType Scale=$aMarkerScale PointsOnSide=1
|
|
set aCol [expr $aCol - 1]
|
|
}
|
|
}
|
|
}
|
|
puts "All markers have been displayed"
|