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
bd2ca7d5
Commit
bd2ca7d5
authored
Jan 11, 2010
by
Alexander Wiebel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[DOC] put modules in one group
parent
fa3d8465
Changes
15
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
18 additions
and
5 deletions
+18
-5
src/modules/coordinateSystem/WMCoordinateSystem.h
src/modules/coordinateSystem/WMCoordinateSystem.h
+1
-0
src/modules/data/WMData.h
src/modules/data/WMData.h
+1
-0
src/modules/distanceMap/WMDistanceMap.h
src/modules/distanceMap/WMDistanceMap.h
+1
-0
src/modules/eegTest/WMEEGTest.h
src/modules/eegTest/WMEEGTest.h
+1
-1
src/modules/eegView/WMEEGView.h
src/modules/eegView/WMEEGView.h
+1
-0
src/modules/fiberClustering/WMFiberClustering.h
src/modules/fiberClustering/WMFiberClustering.h
+1
-0
src/modules/fiberCulling/WMFiberCulling.h
src/modules/fiberCulling/WMFiberCulling.h
+1
-0
src/modules/fiberDisplay/WMFiberDisplay.h
src/modules/fiberDisplay/WMFiberDisplay.h
+1
-0
src/modules/hud/WMHud.h
src/modules/hud/WMHud.h
+1
-0
src/modules/marchingCubes/WMMarchingCubes.h
src/modules/marchingCubes/WMMarchingCubes.h
+1
-0
src/modules/navSlices/WMNavSlices.h
src/modules/navSlices/WMNavSlices.h
+1
-2
src/modules/prototypeBoxManipulation/WMPrototypeBoxManipulation.h
...les/prototypeBoxManipulation/WMPrototypeBoxManipulation.h
+1
-0
src/modules/test/WMTest.h
src/modules/test/WMTest.h
+1
-1
src/modules/textureList/WMTextureList.h
src/modules/textureList/WMTextureList.h
+1
-1
src/modules/voxelizer/WMVoxelizer.h
src/modules/voxelizer/WMVoxelizer.h
+4
-0
No files found.
src/modules/coordinateSystem/WMCoordinateSystem.h
View file @
bd2ca7d5
...
...
@@ -39,6 +39,7 @@
/**
* class that implements the various coordinate systems as overlays within the 3D view
* \ingroup modules
*/
class
WMCoordinateSystem
:
public
WModule
,
public
osg
::
Referenced
{
...
...
src/modules/data/WMData.h
View file @
bd2ca7d5
...
...
@@ -41,6 +41,7 @@
/**
* Module for encapsulating WDataSets. It can encapsulate almost everything, but is intended to be used with WDataSets and its
* inherited classes. This class builds a "source" in OpenWalnut's DataFlow Network.
* \ingroup modules
*/
class
WMData
:
public
WModule
{
...
...
src/modules/distanceMap/WMDistanceMap.h
View file @
bd2ca7d5
...
...
@@ -32,6 +32,7 @@
/**
* Computes a distance map from an anatomy dataset and renders it as isosurface.
* \ingroup modules
*/
class
WMDistanceMap
:
public
WModule
{
...
...
src/modules/eegTest/WMEEGTest.h
View file @
bd2ca7d5
...
...
@@ -31,7 +31,7 @@
/**
* Simple module for testing Eeg loading stuff.
* \ingroup
kernel
* \ingroup
modules
*/
class
WMEEGTest
:
public
WModule
{
...
...
src/modules/eegView/WMEEGView.h
View file @
bd2ca7d5
...
...
@@ -33,6 +33,7 @@
/**
* Test module to open a new widget and display EEG data
* \ingroup modules
*/
class
WMEEGView
:
public
WModule
{
...
...
src/modules/fiberClustering/WMFiberClustering.h
View file @
bd2ca7d5
...
...
@@ -41,6 +41,7 @@
/**
* Test module for Clustering fibers
* \ingroup modules
*/
class
WMFiberClustering
:
public
WModule
{
...
...
src/modules/fiberCulling/WMFiberCulling.h
View file @
bd2ca7d5
...
...
@@ -38,6 +38,7 @@
/**
* Test module for culling fibers
* \ingroup modules
*/
class
WMFiberCulling
:
public
WModule
{
...
...
src/modules/fiberDisplay/WMFiberDisplay.h
View file @
bd2ca7d5
...
...
@@ -36,6 +36,7 @@
/**
* Test module for drawing fibers
* \ingroup modules
*/
class
WMFiberDisplay
:
public
WModule
{
...
...
src/modules/hud/WMHud.h
View file @
bd2ca7d5
...
...
@@ -36,6 +36,7 @@
/**
* This module implements several onscreen status displays
* \ingroup modules
*/
class
WMHud
:
public
WModule
,
public
osg
::
Referenced
{
...
...
src/modules/marchingCubes/WMMarchingCubes.h
View file @
bd2ca7d5
...
...
@@ -87,6 +87,7 @@ typedef std::vector<WMCTriangle> WMCTriangleVECTOR;
/**
* Module implementing the marching cubes algorithm with consistent triangulation for data
* given on regular grids with axis-aligned cells.
* \ingroup modules
*/
class
WMMarchingCubes
:
public
WModule
{
...
...
src/modules/navSlices/WMNavSlices.h
View file @
bd2ca7d5
...
...
@@ -38,9 +38,8 @@
#include "../../kernel/WModuleInputData.h"
/**
* \par Description:
*
* Navigation slice module
* \ingroup modules
*/
class
WMNavSlices
:
public
WModule
,
public
osg
::
Referenced
{
...
...
src/modules/prototypeBoxManipulation/WMPrototypeBoxManipulation.h
View file @
bd2ca7d5
...
...
@@ -42,6 +42,7 @@ class WPickHandler;
/**
* Prototype module
* \ingroup modules
*/
class
WMPrototypeBoxManipulation
:
public
WModule
{
...
...
src/modules/test/WMTest.h
View file @
bd2ca7d5
...
...
@@ -31,7 +31,7 @@
/**
* Simple module for testing some WKernel functionality.
* \ingroup
kernel
* \ingroup
modules
*/
class
WMTest
:
public
WModule
{
...
...
src/modules/textureList/WMTextureList.h
View file @
bd2ca7d5
...
...
@@ -31,7 +31,7 @@
/**
* Module representing the available textures. It is currently just a skeleton.
* \ingroup
kernel
* \ingroup
modules
*/
class
WMTextureList
:
public
WModule
{
...
...
src/modules/voxelizer/WMVoxelizer.h
View file @
bd2ca7d5
...
...
@@ -35,6 +35,10 @@
#include "../../kernel/WModule.h"
#include "../../kernel/WModuleInputData.h"
/**
* TODO(math): document this
* \ingroup modules
*/
class
WMVoxelizer
:
public
WModule
{
friend
class
WMVoxelizerTest
;
...
...
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