MCPcopy Create free account
hub / github.com/Kitware/VTK / CopyAndCastFrom

Function CopyAndCastFrom

Common/DataModel/vtkImageData.h:248–258  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

246 */
247 virtual void CopyAndCastFrom(vtkImageData* inData, int extent[6]);
248 virtual void CopyAndCastFrom(vtkImageData* inData, int x0, int x1, int y0, int y1, int z0, int z1)
249 {
250 int e[6];
251 e[0] = x0;
252 e[1] = x1;
253 e[2] = y0;
254 e[3] = y1;
255 e[4] = z0;
256 e[5] = z1;
257 this->CopyAndCastFrom(inData, e);
258 }
259 ///@}
260
261 /**

Callers

nothing calls this directly

Calls 1

CopyAndCastFromMethod · 0.80

Tested by

no test coverage detected