Lines Matching defs:Vtemp
82 //Geom::Point Vtemp[sz][sz];
83 std::vector< std::vector< Geom::Point > > Vtemp;
85 Vtemp[i].reserve(sz);
88 std::copy(p.begin(), p.end(), Vtemp[0].begin());
93 Vtemp[i][j] = lerp(t, Vtemp[i-1][j], Vtemp[i-1][j+1]);
100 left.p[j] = Vtemp[j][0];
102 right.p[j] = Vtemp[sz-1-j][j];
113 Geom::Point Vtemp[sz][sz];
116 std::copy(p.begin(), p.end(), Vtemp[0]);
121 Vtemp[i][j] = lerp(t, Vtemp[i-1][j], Vtemp[i-1][j+1]);
124 return Vtemp[sz-1][0];