WorldViz User Forum  

Go Back   WorldViz User Forum > Vizard

 
 
Thread Tools Rate Thread Display Modes
Prev Previous Post   Next Post Next
  #6  
Old 12-17-2008, 01:03 PM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
Yes, here is an example of how to create a texture on-the-fly and modify the data at runtime.
Code:
import viz
viz.go()

WIDTH = 16
HEIGHT = 16

#Create blank texture
tex = viz.addBlankTexture([WIDTH,HEIGHT])

#Create quad to display texture
quad = viz.addTexQuad(pos=(0,1.8,2),texture=tex)

def SetTextureColors(begin,end):
	
	#Get raw image data buffer
	data = tex.getImageData()

	#Modify image data so it blends from begin to end color
	def getColor(c):
		return [ chr(int(v*255)) for v in c ]

	for y in xrange(HEIGHT):
		for x in xrange(WIDTH):
			index = y*WIDTH*3 + x*3
			r,g,b = getColor(vizmat.Interpolate(begin,end,float(x)/WIDTH))
			data[index] = r
			data[index+1] = g
			data[index+2] = b

	#Notify Vizard that texture data has been modified
	tex.hint(viz.TEXTURE_MODIFIED_HINT)

SetTextureColors(viz.WHITE,viz.RED)

#Toggle texture color when space key is pressed
vizact.onkeydown(' ',SetTextureColors,viz.WHITE,vizact.choice([viz.GREEN,viz.BLUE,viz.RED]))
From what you described I don't see why you can't use textures instead of nodes.
Reply With Quote
 


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
orthographic projection in a head-tracked cave environment michaelrepucci Vizard 5 12-14-2011 10:29 AM
RE: Shadow Module nige777 Vizard 2 05-08-2008 04:52 PM
Viewing Projection pkhoosh Vizard 2 01-25-2006 09:52 AM
Fading/lightening-Problem and viz.go in module Johannes Vizard 6 09-02-2005 04:28 PM
vhil module vadrian Vizard 2 01-27-2005 11:52 AM


All times are GMT -7. The time now is 07:13 PM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
Copyright 2002-2023 WorldViz LLC