Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
CAMP
campvis-public
Commits
83307128
Commit
83307128
authored
Mar 23, 2015
by
Hossain Mahmud
Browse files
rebased and cleaned
parent
4994c746
Changes
3
Hide whitespace changes
Inline
Side-by-side
core/pipeline/autoevaluationpipeline.cpp
View file @
83307128
...
...
@@ -44,12 +44,6 @@ namespace campvis {
void
AutoEvaluationPipeline
::
init
()
{
AbstractPipeline
::
init
();
// connect invalidation of each processor
//for (std::vector<AbstractProcessor*>::iterator it = _processors.begin(); it != _processors.end(); ++it) {
// (*it)->s_invalidated.connect(this, &AutoEvaluationPipeline::onProcessorInvalidated);
//}
_data
->
s_dataAdded
.
connect
(
this
,
&
AutoEvaluationPipeline
::
onDataContainerDataAdded
);
}
...
...
modules/vis/processors/volumerenderer.cpp
View file @
83307128
...
...
@@ -52,6 +52,7 @@ namespace campvis {
,
p_eepProps
(
"EEPProps"
,
"Entry/Exit Points Generator"
)
,
p_raycasterProps
(
"RaycasterProps"
,
"Raycaster"
)
,
p_orientationOverlayProps
(
"OrientationOverlayProps"
,
"Orientation Overlay"
)
,
p_raycastingProcSelector
(
"RaycasterSelector"
,
"RaycasterSelector"
,
new
GenericOption
<
std
::
string
>
(
"select"
,
"Select Processor"
),
1
)
,
_pgGenerator
()
,
_eepGenerator
(
viewportSizeProp
)
,
_raycaster
(
raycaster
)
...
...
modules/vis/processors/volumerenderer.h
View file @
83307128
...
...
@@ -107,7 +107,9 @@ namespace campvis {
MetaProperty
p_eepProps
;
///< MetaProperty for properties of the EEPGenerator processor
MetaProperty
p_raycasterProps
;
///< MetaProperty for properties of the raycasting processor
MetaProperty
p_orientationOverlayProps
;
///< MetaProperty for properties of the OrientationOverlay processor
GenericOptionProperty
<
std
::
string
>
p_raycastingProcSelector
;
///< Name of the RaycastingProcessor to be used
sigslot
::
signal2
<
RaycastingProcessor
*
,
RaycastingProcessor
*>
s_raycasterChanged
;
///< Signal emited when the raycaster is changed
protected:
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment