vector math:在haxe中编写着色器 源码
Haxe矢量数学 需要 Haxe向量数学库,使GLSL向量和矩阵运算可以在haxe中进行编译 特征 GLSL内置功能 import VectorMath;之后,所有GLSL内置函数都可用import VectorMath; import VectorMath ; var direction = normalize ( velocity ); var speed = length ( velocity ); 向量和矩阵构造器 向量和矩阵可以使用与GLSL相同的模式构造 // new keyword not required vec2 ( 1 , 2 ); // single argument sets all components vec2 ( 0.0 ); // vector composition var color = vec3 ( 0 , 1 , 0 ); vec4 ( col
用户评论