mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Graphic3d_Camera::TransformMatrices redundant NCollection_Handle usage has been replaced with validity flags. Graphic3d_TransModeFlags now defined as enumeration, not integer bit flags. Graphic3d_TMF_PanPers and Graphic3d_TMF_FullPers have been removed. Graphic3d_TMF_ZoomRotatePers has been introduced. Graphic3d_TransformPers is now inherits Standard_Transient. Graphic3d_TransformPers now defines dedicated constructors for 3D persistence (zoom / rotate) and 2D persistence (2d / trihedron). 2D persistence now supports dedicated values for X and Y offsets. The corner is now specified by enumeration Aspect_TypeOfTriedronPosition instead of indirect interpretation of anchor point values. Fixed handling of Graphic3d_TMF_ZoomRotatePers (combination of Graphic3d_TMF_RotatePers + Graphic3d_TMF_ZoomPers). PrsMgr_PresentableObject, Graphic3d_CStructure now hold Handle(Graphic3d_TransformPers) instead of a value. Method ::SetTransformPersistence(), ::TransformPersistence() now works with Handle(Graphic3d_TransformPers). Old methods have been marked deprecated.
31 lines
621 B
Plaintext
Executable File
31 lines
621 B
Plaintext
Executable File
puts "============"
|
|
puts "OCC23120"
|
|
puts "============"
|
|
puts ""
|
|
###########################################################################
|
|
# Transform persistence is not restored
|
|
###########################################################################
|
|
|
|
box b1 10 20 30
|
|
box b2 10 20 30
|
|
ttranslate b2 50 50 0
|
|
vinit
|
|
vdisplay b1 -trihedron center
|
|
|
|
vdisplay b2
|
|
vfit
|
|
vsetdispmode 1
|
|
vzoom 0.5
|
|
vpan 100 0
|
|
|
|
set x_coord 300
|
|
set y_coord 130
|
|
|
|
checkcolor $x_coord $y_coord 0.78 0.55 0.9
|
|
|
|
if { $stat != 1 } {
|
|
puts "Error : Transform persistence is not restored"
|
|
}
|
|
|
|
checkview -screenshot -3d -path ${imagedir}/${test_image}.png
|