Subversion Repositories gelsvn

Rev

Rev 587 | Rev 595 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 587 Rev 591
Line 225... Line 225...
225
 
225
 
226
        vector<Vec3d> points;
226
        vector<Vec3d> points;
227
        for(Walker w = m.walker(v); !w.full_circle(); w = w.circulate_vertex_cw())
227
        for(Walker w = m.walker(v); !w.full_circle(); w = w.circulate_vertex_cw())
228
            points.push_back(Vec3d(m.pos(w.vertex())));
228
            points.push_back(Vec3d(m.pos(w.vertex())));
229
 
229
 
230
        size_t N = points.size();
230
        int N = int(points.size());
231
 
231
 
232
        CVector b(N);
232
        CVector b(N);
233
        // Compute the matrix of parameter values
233
        // Compute the matrix of parameter values
234
        CMatrix PMat(N, 3);
234
        CMatrix PMat(N, 3);
235
        for(int i = 0; i < N; ++i){
235
        for(int i = 0; i < N; ++i){