View Single Post
  #3  
Old 06-13-2012, 05:25 AM
rlh001 rlh001 is offline
Member
 
Join Date: Mar 2011
Posts: 18
The Vizard window opens at 800 x 600 pixels and the image looks proportioned properly. When I Maximize the window the image is distorted unless I change the scaling with the code below, but then it distorts the image when the window is not maximized. I need to have the image appear undistorted regardless of window sizing. Thanks

##Add Instrument Cluster Image to Screen
clusterTex = viz.addTexture('resources\ClusterGraphics.png')
clusterQuad = viz.addTexQuad(viz.SCREEN)
clusterQuad.texture(clusterTex)
# Increase size of image
clusterScale = 2.75
#Modify Aspect ratio to look correct when changed to full screen
clusterAspectRatio= 1.75 # full screen 1280:800
clusterQuad.setScale(clusterScale * clusterAspectRatio, clusterScale )
Reply With Quote