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

Method SetSampleDimensions

Imaging/Hybrid/vtkSampleFunction.cxx:283–292  ·  view source on GitHub ↗

------------------------------------------------------------------------------ Specify the dimensions of the data on which to sample.

Source from the content-addressed store, hash-verified

281//------------------------------------------------------------------------------
282// Specify the dimensions of the data on which to sample.
283void vtkSampleFunction::SetSampleDimensions(int i, int j, int k)
284{
285 int dim[3];
286
287 dim[0] = i;
288 dim[1] = j;
289 dim[2] = k;
290
291 this->SetSampleDimensions(dim);
292}
293
294//------------------------------------------------------------------------------
295// Specify the dimensions of the data on which to sample.

Callers 1

mainMethod · 0.95

Calls 1

ModifiedMethod · 0.45

Tested by 1

mainMethod · 0.76