D | u_unfilled_gen.py | 98 def vert( intype, outtype, v0 ): argument 99 if intype == GENERATE: 104 def line( intype, outtype, ptr, v0, v1 ): argument 105 print ' (' + ptr + ')[0] = ' + vert( intype, outtype, v0 ) + ';' 106 print ' (' + ptr + ')[1] = ' + vert( intype, outtype, v1 ) + ';' 112 def do_tri( intype, outtype, ptr, v0, v1, v2 ): argument 113 line( intype, outtype, ptr, v0, v1 ) 114 line( intype, outtype, ptr + '+2', v1, v2 ) 115 line( intype, outtype, ptr + '+4', v2, v0 ) 117 def do_quad( intype, outtype, ptr, v0, v1, v2, v3 ): argument [all …]
|