Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
OpenWalnut Core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
44
Issues
44
List
Boards
Labels
Service Desk
Milestones
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
OpenWalnut
OpenWalnut Core
Commits
ce8e2e7f
Commit
ce8e2e7f
authored
Jul 22, 2017
by
Alexander Wiebel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[STYLE
#364
] icons and comments
parent
b6faa153
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
103 additions
and
5 deletions
+103
-5
src/modules/calculateTensors/resources/META
src/modules/calculateTensors/resources/META
+43
-0
src/modules/calculateTensors/resources/WMCalculateTensors.png
...modules/calculateTensors/resources/WMCalculateTensors.png
+0
-0
src/modules/fiberResampling/WMFiberResampling.cpp
src/modules/fiberResampling/WMFiberResampling.cpp
+6
-0
src/modules/fiberResampling/WMFiberResampling.h
src/modules/fiberResampling/WMFiberResampling.h
+6
-1
src/modules/fibersToPoints/WMFibersToPoints.cpp
src/modules/fibersToPoints/WMFibersToPoints.cpp
+1
-1
src/modules/fibersToPoints/resources/META
src/modules/fibersToPoints/resources/META
+43
-0
src/modules/fibersToPoints/resources/WMFibersToPoints.png
src/modules/fibersToPoints/resources/WMFibersToPoints.png
+0
-0
src/modules/sampleOnFibers/WMSampleOnFibers.cpp
src/modules/sampleOnFibers/WMSampleOnFibers.cpp
+1
-1
src/modules/sampleOnFibers/resources/META
src/modules/sampleOnFibers/resources/META
+1
-1
src/modules/sampleOnFibers/resources/WMSampleOnFibers.png
src/modules/sampleOnFibers/resources/WMSampleOnFibers.png
+0
-0
src/modules/vectorAlign/WMVectorAlign.cpp
src/modules/vectorAlign/WMVectorAlign.cpp
+2
-1
No files found.
src/modules/calculateTensors/resources/META
0 → 100644
View file @
ce8e2e7f
//---------------------------------------------------------------------------
//
// Project: OpenWalnut ( http://www.openwalnut.org )
//
// Copyright 2015-2017 OpenWalnut Community, Nemtics, BSV@Uni-Leipzig
// For more information see http://www.openwalnut.org/copying
//
// This file is part of OpenWalnut.
//
// OpenWalnut is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// OpenWalnut is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with OpenWalnut. If not, see <http://www.gnu.org/licenses/>.
//
//---------------------------------------------------------------------------
// An extensively commented example of a META file can be
// found in src/modules/template/resources
"Calculate Tensors"
{
icon="WMCalculateTensors.png";
website = "http://www.openwalnut.org";
description = "Calculates diffusion tensors from an input sh dataset.";
author = "OpenWalnut Project";
"OpenWalnut Project"
{
url="http://www.openwalnut.org";
email="contact@openwalnut.org";
what="Development, adaption to style and bug fixing";
};
};
src/modules/calculateTensors/resources/WMCalculateTensors.png
0 → 100644
View file @
ce8e2e7f
778 Bytes
src/modules/fiberResampling/WMFiberResampling.cpp
View file @
ce8e2e7f
...
...
@@ -33,6 +33,7 @@
#include <core/kernel/WKernel.h>
#include "WMFiberResampling.h"
#include "WMFiberResampling.xpm"
#include "WResampleByMaxPoints.h"
#include "WResampleByNumPoints.h"
#include "WResampleBySegLength.h"
...
...
@@ -60,6 +61,11 @@ boost::shared_ptr< WModule > WMFiberResampling::factory() const
return
boost
::
shared_ptr
<
WModule
>
(
new
WMFiberResampling
()
);
}
const
char
**
WMFiberResampling
::
getXPMIcon
()
const
{
return
WMFiberResampling_xpm
;
}
const
std
::
string
WMFiberResampling
::
getName
()
const
{
return
"Fiber Re-Sampling"
;
...
...
src/modules/fiberResampling/WMFiberResampling.h
View file @
ce8e2e7f
...
...
@@ -73,6 +73,12 @@ public:
*/
virtual
boost
::
shared_ptr
<
WModule
>
factory
()
const
;
/**
* Get the icon for this module in XPM format.
* \return the icon.
*/
virtual
const
char
**
getXPMIcon
()
const
;
protected:
/**
* Entry point after loading the module. Runs in separate thread.
...
...
@@ -107,4 +113,3 @@ private:
};
#endif // WMFIBERRESAMPLING_H
src/modules/fibersToPoints/WMFibersToPoints.cpp
View file @
ce8e2e7f
...
...
@@ -62,7 +62,7 @@ const std::string WMFibersToPoints::getName() const
const
std
::
string
WMFibersToPoints
::
getDescription
()
const
{
return
"This module converts fiber data to points by using the fiber vertex points and colors.
.
"
;
return
"This module converts fiber data to points by using the fiber vertex points and colors."
;
}
void
WMFibersToPoints
::
connectors
()
...
...
src/modules/fibersToPoints/resources/META
0 → 100644
View file @
ce8e2e7f
//---------------------------------------------------------------------------
//
// Project: OpenWalnut ( http://www.openwalnut.org )
//
// Copyright 2015-2017 OpenWalnut Community, Nemtics, BSV@Uni-Leipzig
// For more information see http://www.openwalnut.org/copying
//
// This file is part of OpenWalnut.
//
// OpenWalnut is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// OpenWalnut is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with OpenWalnut. If not, see <http://www.gnu.org/licenses/>.
//
//---------------------------------------------------------------------------
// An extensively commented example of a META file can be
// found in src/modules/template/resources
"Fibers To Points"
{
icon="WMFibersToPoints.png";
website = "http://www.openwalnut.org";
description = "This module converts mesh data to points by using the mesh vertex points and colors.";
author = "OpenWalnut Project";
"OpenWalnut Project"
{
url="http://www.openwalnut.org";
email="contact@openwalnut.org";
what="Development, adaption to style and bug fixing";
};
};
src/modules/fibersToPoints/resources/WMFibersToPoints.png
0 → 100644
View file @
ce8e2e7f
2.31 KB
src/modules/sampleOnFibers/WMSampleOnFibers.cpp
View file @
ce8e2e7f
...
...
@@ -62,7 +62,7 @@ const std::string WMSampleOnFibers::getName() const
const
std
::
string
WMSampleOnFibers
::
getDescription
()
const
{
return
"This module allows you to sample points on fibers using the parameters on
e
a fiber."
;
return
"This module allows you to sample points on fibers using the parameters on a fiber."
;
}
void
WMSampleOnFibers
::
connectors
()
...
...
src/modules/sampleOnFibers/resources/META
View file @
ce8e2e7f
...
...
@@ -32,7 +32,7 @@
{
// Provide an icon. If the icon exists, it overrides the one provided by your
// getXPMIcon method. This path is relative to your module's resource directory.
// icon="icon
.png";
icon="WMSampleOnFibers
.png";
// Where to find the module?
website = "http://www.openwalnut.org";
...
...
src/modules/sampleOnFibers/resources/WMSampleOnFibers.png
0 → 100644
View file @
ce8e2e7f
2.39 KB
src/modules/vectorAlign/WMVectorAlign.cpp
View file @
ce8e2e7f
...
...
@@ -28,6 +28,7 @@
#include "core/dataHandler/WDataSetVector.h"
#include "core/kernel/WKernel.h"
#include "WMVectorAlign.h"
#include "WMVectorAlign.xpm"
// This line is needed by the module loader to actually find your module. Do not remove. Do NOT add a ";" here.
W_LOADABLE_MODULE
(
WMVectorAlign
)
...
...
@@ -48,7 +49,7 @@ boost::shared_ptr< WModule > WMVectorAlign::factory() const
const
char
**
WMVectorAlign
::
getXPMIcon
()
const
{
return
NULL
;
// Please put a real icon here.
return
WMVectorAlign_xpm
;
// Please put a real icon here.
}
const
std
::
string
WMVectorAlign
::
getName
()
const
...
...
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