Skip to content
Snippets Groups Projects
Commit d5672fdc authored by Ben Boeckel's avatar Ben Boeckel
Browse files

Merge remote-tracking branch...

Merge remote-tracking branch 'gl/Xabi/release-6.3-fix-doc-vtkimagedata-getdimensions' into release-6.3

* gl/Xabi/release-6.3-fix-doc-vtkimagedata-getdimensions:
  Fix the documentation for vtkImageData::GetDimensions
parents eb9e9c2b 98790451
No related branches found
No related tags found
No related merge requests found
......@@ -101,7 +101,14 @@ public:
// Get dimensions of this structured points dataset.
// It is the number of points on each axis.
// Dimensions are computed from Extents during this call.
// \warning Non thread-safe, use second signature if you want it to be.
virtual int *GetDimensions();
// Description:
// Get dimensions of this structured points dataset.
// It is the number of points on each axis.
// This method is thread-safe.
// \warning The Dimensions member variable is not updated during this call.
virtual void GetDimensions(int dims[3]);
// Description:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment