Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
OpenWalnut
OpenWalnut Core
Commits
ade270b5
Commit
ade270b5
authored
Aug 07, 2010
by
Sebastian Eichelbaum
Browse files
[MERGE]
parents
382edfe5
146b431b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/modules/distanceMapIsosurface/WMDistanceMapIsosurface.cpp
...modules/distanceMapIsosurface/WMDistanceMapIsosurface.cpp
+2
-2
No files found.
src/modules/distanceMapIsosurface/WMDistanceMapIsosurface.cpp
View file @
ade270b5
...
...
@@ -118,9 +118,9 @@ void WMDistanceMapIsosurface::moduleMain()
// NOTE: you can use the WModuleContainer::applyModule functions here, which, in this case, is possible, since the connectors
// can be connected unambiguously (one to one connection). But to show how hard wiring works, we do it manually here.
m_marchingCubesModule
->
getInputConnector
(
"
in
"
)
->
connect
(
m_distanceMapModule
->
getOutputConnector
(
"out"
)
);
m_marchingCubesModule
->
getInputConnector
(
"
values
"
)
->
connect
(
m_distanceMapModule
->
getOutputConnector
(
"out"
)
);
// this is the same as doing it the other way around.
// m_distanceMapModule->getOutputConnector( "out" )->connect( m_marchingCubesModule->getInputConnector( "
in
" ) );
// m_distanceMapModule->getOutputConnector( "out" )->connect( m_marchingCubesModule->getInputConnector( "
values
" ) );
// simple, isn't it? ;-)
//////////////////////////////////////////////////////////////////////////////////
...
...
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