91
92
int numComp = data1->getNumComponents(0, ent, ele);
93
94
data1->getNode(0, ent, ele, 0, x, y, z);
94
PointData *v = new PointData(x, y, z, numComp * numSteps);
95
PointData *p = new PointData(x, y, z, numComp * numSteps);
95
96
for(int step = 0; step < numSteps; step++)
96
97
for(int comp = 0; comp < numComp; comp++)
97
data1->getValue(step, ent, ele, 0, comp, v->v[3 + numComp * step + comp]);
98
data1->getValue(step, ent, ele, 0, comp, p->v[3 + numComp * step + comp]);