【发布时间】:2014-10-24 20:31:40
【问题描述】:
我有一个可变坐标计数L 的向量类template <unsigned int L> class Vec。
我想实现 glsl 的字段选择功能,它允许您通过选择 vec4 a=vec4(1,2,3,4); vec4 b=a.xyxz; //b is (1,2,1,3). 来创建新向量
在我的程序中,我想创建类似的东西:
Vec<3> a={7,8,9};
Vec<4> b=a.select(0,2,2,1); //each argument is an index of the coordinate to use.
Vec<5> c=b.select(0,1,2,3,1);
解决方案:
template<typename... Args,unsigned int S=sizeof...(Args)> Vec<S> select(Args&&... args){
Vec<S> result;
int indices[S]={args...};
for(int i=0;i<S;i++){
result[i]=this->v[indices[i]]; //v is the float array that stores the values.
}
return result;
}
还有一些荒谬的例子,看看它是否有效:
Vec<3> a={7,8,9};
Vec<9> b=a.select(0,0,1,1,0,0,1,1,2);
Vec<1> c=a.select(2);
a=[7,8,9]
b=[7,7,8,8,7,7,8,8,9]
c=[9]
【问题讨论】:
-
this question的可能重复
-
template <const unsigned int L> class Vecremoveconst,这是多余的
标签: c++ templates c++11 variadic-functions variadic