Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Scott Wittenburg
VTK
Commits
b06d713d
Commit
b06d713d
authored
Dec 14, 2017
by
Ben Boeckel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Imaging/Core: use VTK_SIZEHINT
parent
782d7914
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
7 additions
and
14 deletions
+7
-14
Imaging/Core/vtkImageClip.h
Imaging/Core/vtkImageClip.h
+1
-1
Imaging/Core/vtkImagePadFilter.h
Imaging/Core/vtkImagePadFilter.h
+1
-1
Imaging/Core/vtkImagePointDataIterator.h
Imaging/Core/vtkImagePointDataIterator.h
+1
-1
Imaging/Core/vtkImagePointIterator.h
Imaging/Core/vtkImagePointIterator.h
+1
-1
Imaging/Core/vtkImageReslice.h
Imaging/Core/vtkImageReslice.h
+2
-2
Imaging/Core/vtkImageSincInterpolator.h
Imaging/Core/vtkImageSincInterpolator.h
+1
-1
Wrapping/Tools/hints
Wrapping/Tools/hints
+0
-7
No files found.
Imaging/Core/vtkImageClip.h
View file @
b06d713d
...
...
@@ -49,7 +49,7 @@ public:
void
SetOutputWholeExtent
(
int
minX
,
int
maxX
,
int
minY
,
int
maxY
,
int
minZ
,
int
maxZ
);
void
GetOutputWholeExtent
(
int
extent
[
6
]);
int
*
GetOutputWholeExtent
()
{
return
this
->
OutputWholeExtent
;}
int
*
GetOutputWholeExtent
()
VTK_SIZEHINT
(
6
)
{
return
this
->
OutputWholeExtent
;}
//@}
void
ResetOutputWholeExtent
();
...
...
Imaging/Core/vtkImagePadFilter.h
View file @
b06d713d
...
...
@@ -43,7 +43,7 @@ public:
void
SetOutputWholeExtent
(
int
minX
,
int
maxX
,
int
minY
,
int
maxY
,
int
minZ
,
int
maxZ
);
void
GetOutputWholeExtent
(
int
extent
[
6
]);
int
*
GetOutputWholeExtent
()
{
return
this
->
OutputWholeExtent
;}
int
*
GetOutputWholeExtent
()
VTK_SIZEHINT
(
6
)
{
return
this
->
OutputWholeExtent
;}
//@}
//@{
...
...
Imaging/Core/vtkImagePointDataIterator.h
View file @
b06d713d
...
...
@@ -111,7 +111,7 @@ public:
/**
* Get the index at the beginning of the current span.
*/
const
int
*
GetIndex
()
const
int
*
GetIndex
()
VTK_SIZEHINT
(
3
)
{
return
this
->
Index
;
}
...
...
Imaging/Core/vtkImagePointIterator.h
View file @
b06d713d
...
...
@@ -110,7 +110,7 @@ public:
/**
* Get the current position.
*/
double
*
GetPosition
()
double
*
GetPosition
()
VTK_SIZEHINT
(
3
)
{
return
this
->
Position
;
}
...
...
Imaging/Core/vtkImageReslice.h
View file @
b06d713d
...
...
@@ -119,7 +119,7 @@ public:
void
GetResliceAxesDirectionCosines
(
double
x
[
3
],
double
y
[
3
],
double
z
[
3
]);
void
GetResliceAxesDirectionCosines
(
double
xyz
[
9
])
{
this
->
GetResliceAxesDirectionCosines
(
&
xyz
[
0
],
&
xyz
[
3
],
&
xyz
[
6
]);
};
double
*
GetResliceAxesDirectionCosines
()
{
double
*
GetResliceAxesDirectionCosines
()
VTK_SIZEHINT
(
9
)
{
this
->
GetResliceAxesDirectionCosines
(
this
->
ResliceAxesDirectionCosines
);
return
this
->
ResliceAxesDirectionCosines
;
};
//@}
...
...
@@ -135,7 +135,7 @@ public:
void
SetResliceAxesOrigin
(
const
double
xyz
[
3
])
{
this
->
SetResliceAxesOrigin
(
xyz
[
0
],
xyz
[
1
],
xyz
[
2
]);
};
void
GetResliceAxesOrigin
(
double
xyz
[
3
]);
double
*
GetResliceAxesOrigin
()
{
double
*
GetResliceAxesOrigin
()
VTK_SIZEHINT
(
3
)
{
this
->
GetResliceAxesOrigin
(
this
->
ResliceAxesOrigin
);
return
this
->
ResliceAxesOrigin
;
};
//@}
...
...
Imaging/Core/vtkImageSincInterpolator.h
View file @
b06d713d
...
...
@@ -148,7 +148,7 @@ public:
f
[
0
]
=
this
->
BlurFactors
[
0
];
f
[
1
]
=
this
->
BlurFactors
[
1
];
f
[
2
]
=
this
->
BlurFactors
[
2
];
}
double
*
GetBlurFactors
()
{
return
this
->
BlurFactors
;
}
double
*
GetBlurFactors
()
VTK_SIZEHINT
(
3
)
{
return
this
->
BlurFactors
;
}
//@}
/**
...
...
Wrapping/Tools/hints
View file @
b06d713d
...
...
@@ -6,18 +6,11 @@ vtkGridSynchronizedTemplates3D GetExecuteExtent 304 6
vtkImageAccumulate GetComponentExtent 304 6
vtkImageButterworthHighPass GetCutOff 307 3
vtkImageButterworthLowPass GetCutOff 307 3
vtkImageClip GetOutputWholeExtent 304 6
vtkImageConvolve GetKernel3x3 301 9
vtkImageConvolve GetKernel3x3x3 301 27
vtkImageConvolve GetKernel5x5 301 25
vtkImageEllipsoidSource GetWholeExtent 304 6
vtkImageMandelbrotSource GetSizeCX 307 4
vtkImagePadFilter GetOutputWholeExtent 304 6
vtkImagePointDataIterator GetIndex 304 3
vtkImagePointIterator GetPosition 307 3
vtkImageReslice GetResliceAxesDirectionCosines 307 9
vtkImageReslice GetResliceAxesOrigin 307 3
vtkImageSincInterpolator GetBlurFactors 307 3
vtkImageSource GetExecuteExtent 304 6
vtkImageSpatialAlgorithm GetKernelMiddle 304 3
vtkImageSpatialAlgorithm GetKernelSize 304 3
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment