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

Function SetDimensions

Common/DataModel/vtkCartesianGrid.h:190–190  ·  view source on GitHub ↗

@{ * Set dimensions of rectilinear grid dataset. * This also sets the extent. */

Source from the content-addressed store, hash-verified

188 * This also sets the extent.
189 */
190 void SetDimensions(int i, int j, int k) { this->SetExtent(0, i - 1, 0, j - 1, 0, k - 1); };
191 void SetDimensions(const int dim[3])
192 {
193 this->SetExtent(0, dim[0] - 1, 0, dim[1] - 1, 0, dim[2] - 1);

Callers 2

GetDataDescriptionMethod · 0.70
UploadMethod · 0.50

Calls 1

SetExtentMethod · 0.45

Tested by

no test coverage detected