WorldViz User Forum  

Go Back   WorldViz User Forum > Vizard

 
 
Thread Tools Rate Thread Display Modes
Prev Previous Post   Next Post Next
  #2  
Old 11-10-2010, 06:57 PM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
Here is a sample script showing how to draw a black line over the wireframe of a model:
Code:
import viz
import vizact
viz.go()

viz.clearcolor(viz.GRAY)

frag_black = """
	void main()
	{
	gl_FragColor = vec4(0,0,0,1);
	}
	"""
shader_black = viz.addShader(frag=frag_black)

def addWireOutline(node):
	node.wire = model.clone(parent=node)
	node.wire.polyMode(viz.POLY_WIRE,op=viz.OP_OVERRIDE|viz.OP_ROOT)
	node.wire.zoffset(op=viz.OP_OVERRIDE|viz.OP_ROOT)
	node.wire.apply(shader_black,op=viz.OP_OVERRIDE|viz.OP_ROOT)

model = viz.addChild('ball.wrl',pos=(0,1.8,2))

addWireOutline(model)

model.addAction(vizact.spin(0,1,0,90))

vizact.onkeydown(' ',model.wire.visible,viz.TOGGLE)
Let me know if I misunderstood what you were asking for, or if anything is unclear.
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
Show Physics Shapes bloswald Vizard 3 04-07-2010 03:16 PM
How to make screen black? Josh Vizard 1 04-02-2010 12:30 PM
How to make character animation sequence wchoi Vizard 3 01-22-2010 08:35 AM
cinematic fade to black? billjarrold Vizard 4 12-23-2009 11:09 AM
black outs enkeli Vizard 4 05-09-2006 12:05 PM


All times are GMT -7. The time now is 04:18 PM.


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