Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
V
VTK Examples
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VTK
VTK Examples
Commits
152f7beb
"README.rst" did not exist on "9782e8656e48290acd67021064c9610927d80d57"
Commit
152f7beb
authored
6 years ago
by
Bill Lorensen
Browse files
Options
Downloads
Patches
Plain Diff
ENH: Replace statics inside anonymous namespace.
parent
5f22a2fa
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/Cxx/Remote/FrenetSerretFrameDemo.cxx
+7
-1
7 additions, 1 deletion
src/Cxx/Remote/FrenetSerretFrameDemo.cxx
with
7 additions
and
1 deletion
src/Cxx/Remote/FrenetSerretFrameDemo.cxx
+
7
−
1
View file @
152f7beb
...
...
@@ -19,7 +19,10 @@
#include
<vtkCallbackCommand.h>
#include
<vtkCommand.h>
static
void
MakeGlyphs
(
vtkPolyData
*
src
,
double
size
,
vtkGlyph3D
*
glyph
);
namespace
{
void
MakeGlyphs
(
vtkPolyData
*
src
,
double
size
,
vtkGlyph3D
*
glyph
);
}
struct
Pipeline
{
vtkFrenetSerretFrame
*
frame
;
...
...
@@ -175,6 +178,8 @@ int main(int, char *[])
return
EXIT_SUCCESS
;
}
namespace
{
void
MakeGlyphs
(
vtkPolyData
*
src
,
double
size
,
vtkGlyph3D
*
glyph
)
{
// Source for the glyph filter
...
...
@@ -192,3 +197,4 @@ void MakeGlyphs(vtkPolyData *src, double size, vtkGlyph3D *glyph)
glyph
->
OrientOn
();
glyph
->
Update
();
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment