View Single Post
  #1  
Old 12-16-2014, 06:48 AM
johnallen johnallen is offline
Member
 
Join Date: Nov 2013
Location: Canterbury, UK
Posts: 36
load jpg/bmp image file into wirtual world

Hi,

I want to load a jpg image file into my virtual world and display it on the wall (like a picture in a gallery) of my room (which is already loaded as an osgb file)

I thought this would be simple to do but couldn't find an example. In the end I came up with this which sort of works but I was wondering whether there is a better way to do it?

In particular, a way to link the jpg to the wall rather than having to tweak the position coordinates until its close enough that it looks right (rather than using the magic numbers as I've done so that it works for my room)

Code:
    room = viz.add( 'room.osgb')
    pic1 = viz.addTexture('mona.jpg')

    quad = viz.addTexQuad(parent=room)
    quad.setPosition([ 0,1.6,2.05 ])
    quad.texture(pic1)
Thanks,

John
Reply With Quote