Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Andrew Bauer
VTK
Commits
674f69f0
Commit
674f69f0
authored
Aug 05, 1994
by
Will Schroeder
Browse files
ENH: Added argument to StartMethod/EndMethod functions.
parent
86cca897
Changes
4
Hide whitespace changes
Inline
Side-by-side
src/AppendF.cc
View file @
674f69f0
...
...
@@ -81,10 +81,10 @@ void vlAppendFilter::Update()
if
(
mtime
>
this
->
GetMTime
()
||
this
->
GetMTime
()
>
this
->
ExecuteTime
)
{
if
(
this
->
StartMethod
)
(
*
this
->
StartMethod
)();
if
(
this
->
StartMethod
)
(
*
this
->
StartMethod
)(
this
->
StartMethodArg
);
this
->
Execute
();
this
->
ExecuteTime
.
Modified
();
if
(
this
->
EndMethod
)
(
*
this
->
EndMethod
)();
if
(
this
->
EndMethod
)
(
*
this
->
EndMethod
)(
this
->
EndMethodArg
);
}
}
...
...
src/AppendP.cc
View file @
674f69f0
...
...
@@ -81,10 +81,10 @@ void vlAppendPolyData::Update()
if
(
mtime
>
this
->
GetMTime
()
||
this
->
GetMTime
()
>
this
->
ExecuteTime
)
{
if
(
this
->
StartMethod
)
(
*
this
->
StartMethod
)();
if
(
this
->
StartMethod
)
(
*
this
->
StartMethod
)(
this
->
StartMethodArg
);
this
->
Execute
();
this
->
ExecuteTime
.
Modified
();
if
(
this
->
EndMethod
)
(
*
this
->
EndMethod
)();
if
(
this
->
EndMethod
)
(
*
this
->
EndMethod
)(
this
->
EndMethodArg
);
}
}
...
...
src/BoolSPts.cc
View file @
674f69f0
...
...
@@ -78,10 +78,10 @@ void vlBooleanStructuredPoints::Update()
if
(
mtime
>
this
->
GetMTime
()
||
this
->
GetMTime
()
>
this
->
ExecuteTime
)
{
if
(
this
->
StartMethod
)
(
*
this
->
StartMethod
)();
if
(
this
->
StartMethod
)
(
*
this
->
StartMethod
)(
this
->
StartMethodArg
);
this
->
Execute
();
this
->
ExecuteTime
.
Modified
();
if
(
this
->
EndMethod
)
(
*
this
->
EndMethod
)();
if
(
this
->
EndMethod
)
(
*
this
->
EndMethod
)(
this
->
EndMethodArg
);
}
}
...
...
src/Glyph3D.cc
View file @
674f69f0
...
...
@@ -279,9 +279,9 @@ void vlGlyph3D::Update()
if
(
this
->
Input
->
GetMTime
()
>
this
->
GetMTime
()
||
this
->
GetMTime
()
>
this
->
ExecuteTime
)
{
if
(
this
->
StartMethod
)
(
*
this
->
StartMethod
)();
if
(
this
->
StartMethod
)
(
*
this
->
StartMethod
)(
this
->
StartMethodArg
);
this
->
Execute
();
this
->
ExecuteTime
.
Modified
();
if
(
this
->
EndMethod
)
(
*
this
->
EndMethod
)();
if
(
this
->
EndMethod
)
(
*
this
->
EndMethod
)(
this
->
EndMethodArg
);
}
}
Write
Preview
Supports
Markdown
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