D | u_unfilled_gen.py | 95 def vert( intype, outtype, v0 ): argument 96 if intype == GENERATE: 101 def line( intype, outtype, ptr, v0, v1 ): argument 102 print ' (' + ptr + ')[0] = ' + vert( intype, outtype, v0 ) + ';' 103 print ' (' + ptr + ')[1] = ' + vert( intype, outtype, v1 ) + ';' 109 def do_tri( intype, outtype, ptr, v0, v1, v2 ): argument 110 line( intype, outtype, ptr, v0, v1 ) 111 line( intype, outtype, ptr + '+2', v1, v2 ) 112 line( intype, outtype, ptr + '+4', v2, v0 ) 114 def do_quad( intype, outtype, ptr, v0, v1, v2, v3 ): argument [all …]
|