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
54ded79f
Commit
54ded79f
authored
Aug 06, 2010
by
schurade
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[ADD] added trigger properties that reset the plane
parent
ed4d3902
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
56 additions
and
3 deletions
+56
-3
src/modules/arbitraryPlane/WMArbitraryPlane.cpp
src/modules/arbitraryPlane/WMArbitraryPlane.cpp
+38
-3
src/modules/arbitraryPlane/WMArbitraryPlane.h
src/modules/arbitraryPlane/WMArbitraryPlane.h
+18
-0
No files found.
src/modules/arbitraryPlane/WMArbitraryPlane.cpp
View file @
54ded79f
...
...
@@ -96,6 +96,10 @@ void WMArbitraryPlane::properties()
m_showComplete
=
m_properties
->
addProperty
(
"show complete"
,
"Slice should be drawn complete even if the texture value is zero."
,
false
,
m_propCondition
);
m_showManipulators
=
m_properties
->
addProperty
(
"show manipulators"
,
"Hide/Show manipulators."
,
true
,
m_propCondition
);
m_buttonReset2Axial
=
m_properties
->
addProperty
(
"Axial"
,
"resets and aligns the plane"
,
WPVBaseTypes
::
PV_TRIGGER_READY
,
m_propCondition
);
m_buttonReset2Coronal
=
m_properties
->
addProperty
(
"Coronal"
,
"resets and aligns the plane"
,
WPVBaseTypes
::
PV_TRIGGER_READY
,
m_propCondition
);
m_buttonReset2Sagittal
=
m_properties
->
addProperty
(
"Sagittal"
,
"resets and aligns the plane"
,
WPVBaseTypes
::
PV_TRIGGER_READY
,
m_propCondition
);
}
void
WMArbitraryPlane
::
moduleMain
()
...
...
@@ -168,6 +172,36 @@ void WMArbitraryPlane::moduleMain()
}
}
if
(
m_buttonReset2Axial
->
get
(
true
)
==
WPVBaseTypes
::
PV_TRIGGER_TRIGGERED
)
{
wmath
::
WPosition
center
=
WKernel
::
getRunningKernel
()
->
getSelectionManager
()
->
getCrosshair
()
->
getPosition
();
m_s0
->
setPosition
(
center
);
m_s1
->
setPosition
(
wmath
::
WPosition
(
center
[
0
]
-
100
,
center
[
1
],
center
[
2
]
)
);
m_s2
->
setPosition
(
wmath
::
WPosition
(
center
[
0
],
center
[
1
]
-
100
,
center
[
2
]
)
);
m_buttonReset2Axial
->
set
(
WPVBaseTypes
::
PV_TRIGGER_READY
,
false
);
m_dirty
=
true
;
}
if
(
m_buttonReset2Coronal
->
get
(
true
)
==
WPVBaseTypes
::
PV_TRIGGER_TRIGGERED
)
{
wmath
::
WPosition
center
=
WKernel
::
getRunningKernel
()
->
getSelectionManager
()
->
getCrosshair
()
->
getPosition
();
m_s0
->
setPosition
(
center
);
m_s1
->
setPosition
(
wmath
::
WPosition
(
center
[
0
]
-
100
,
center
[
1
],
center
[
2
]
)
);
m_s2
->
setPosition
(
wmath
::
WPosition
(
center
[
0
],
center
[
1
],
center
[
2
]
-
100
)
);
m_buttonReset2Coronal
->
set
(
WPVBaseTypes
::
PV_TRIGGER_READY
,
false
);
m_dirty
=
true
;
}
if
(
m_buttonReset2Sagittal
->
get
(
true
)
==
WPVBaseTypes
::
PV_TRIGGER_TRIGGERED
)
{
wmath
::
WPosition
center
=
WKernel
::
getRunningKernel
()
->
getSelectionManager
()
->
getCrosshair
()
->
getPosition
();
m_s0
->
setPosition
(
center
);
m_s1
->
setPosition
(
wmath
::
WPosition
(
center
[
0
],
center
[
1
],
center
[
2
]
-
100
)
);
m_s2
->
setPosition
(
wmath
::
WPosition
(
center
[
0
],
center
[
1
]
-
100
,
center
[
2
]
)
);
m_buttonReset2Sagittal
->
set
(
WPVBaseTypes
::
PV_TRIGGER_READY
,
false
);
m_dirty
=
true
;
}
if
(
m_shutdownFlag
()
)
{
break
;
...
...
@@ -184,9 +218,10 @@ void WMArbitraryPlane::initPlane()
m_geode
->
addUpdateCallback
(
new
SafeUpdateCallback
(
this
)
);
m_rootNode
->
insert
(
m_geode
);
m_p0
=
wmath
::
WPosition
(
80
,
100
,
80
);
m_p1
=
wmath
::
WPosition
(
0
,
100
,
80
);
m_p2
=
wmath
::
WPosition
(
80
,
0
,
80
);
wmath
::
WPosition
center
=
WKernel
::
getRunningKernel
()
->
getSelectionManager
()
->
getCrosshair
()
->
getPosition
();
m_p0
=
wmath
::
WPosition
(
center
);
m_p1
=
wmath
::
WPosition
(
center
[
0
]
-
100
,
center
[
1
],
center
[
2
]
);
m_p2
=
wmath
::
WPosition
(
center
[
0
],
center
[
1
]
-
100
,
center
[
2
]
);
m_s0
=
boost
::
shared_ptr
<
WROISphere
>
(
new
WROISphere
(
m_p0
,
2.5
)
);
m_s1
=
boost
::
shared_ptr
<
WROISphere
>
(
new
WROISphere
(
m_p1
,
2.5
)
);
...
...
src/modules/arbitraryPlane/WMArbitraryPlane.h
View file @
54ded79f
...
...
@@ -158,6 +158,24 @@ private:
*/
WPropBool
m_showManipulators
;
/**
* When triggered the center manipulator is set to the nav slice position and the plane is aligned along
* the axial slice
*/
WPropTrigger
m_buttonReset2Axial
;
/**
* When triggered the center manipulator is set to the nav slice position and the plane is aligned along
* the coronal slice
*/
WPropTrigger
m_buttonReset2Coronal
;
/**
* When triggered the center manipulator is set to the nav slice position and the plane is aligned along
* the axial slice
*/
WPropTrigger
m_buttonReset2Sagittal
;
/**
* The root node used for this modules graphics.
...
...
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