Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
VTK
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Scott Wittenburg
VTK
Commits
5ab0c6f4
Commit
5ab0c6f4
authored
Dec 14, 2017
by
Ben Boeckel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Common/Math: use VTK_SIZEHINT
parent
ae8691fa
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
6 deletions
+3
-6
Common/Math/vtkMatrix4x4.h
Common/Math/vtkMatrix4x4.h
+3
-3
Wrapping/Tools/hints
Wrapping/Tools/hints
+0
-3
No files found.
Common/Math/vtkMatrix4x4.h
View file @
5ab0c6f4
...
...
@@ -124,11 +124,11 @@ public:
* For use in Java or Python. The default MultiplyPoint() uses a
* single-precision point.
*/
float
*
MultiplyPoint
(
const
float
in
[
4
])
float
*
MultiplyPoint
(
const
float
in
[
4
])
VTK_SIZEHINT
(
4
)
{
return
this
->
MultiplyFloatPoint
(
in
);
}
float
*
MultiplyFloatPoint
(
const
float
in
[
4
])
float
*
MultiplyFloatPoint
(
const
float
in
[
4
])
VTK_SIZEHINT
(
4
)
{
this
->
MultiplyPoint
(
in
,
this
->
FloatPoint
);
return
this
->
FloatPoint
;
}
double
*
MultiplyDoublePoint
(
const
double
in
[
4
])
double
*
MultiplyDoublePoint
(
const
double
in
[
4
])
VTK_SIZEHINT
(
4
)
{
this
->
MultiplyPoint
(
in
,
this
->
DoublePoint
);
return
this
->
DoublePoint
;
}
//@{
...
...
Wrapping/Tools/hints
View file @
5ab0c6f4
...
...
@@ -44,9 +44,6 @@ vtkLinearTransform TransformFloatNormal 301 3
vtkLinearTransform TransformFloatVector 301 3
vtkLinearTransform TransformNormal 307 3
vtkLinearTransform TransformVector 307 3
vtkMatrix4x4 MultiplyDoublePoint 307 4
vtkMatrix4x4 MultiplyFloatPoint 301 4
vtkMatrix4x4 MultiplyPoint 301 4
vtkMedicalImageProperties GetNthWindowLevelPreset 307 2
vtkMedicalImageProperties GetWindowLevelPreset 307 2
vtkMINCImageReader GetDataRange 307 2
...
...
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