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
db844a13
Commit
db844a13
authored
Aug 06, 2010
by
schurade
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[ADD] add property to allow center position of plane to be attached to nav slive position
parent
54ded79f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
0 deletions
+33
-0
src/modules/arbitraryPlane/WMArbitraryPlane.cpp
src/modules/arbitraryPlane/WMArbitraryPlane.cpp
+19
-0
src/modules/arbitraryPlane/WMArbitraryPlane.h
src/modules/arbitraryPlane/WMArbitraryPlane.h
+14
-0
No files found.
src/modules/arbitraryPlane/WMArbitraryPlane.cpp
View file @
db844a13
...
...
@@ -97,6 +97,8 @@ void WMArbitraryPlane::properties()
false
,
m_propCondition
);
m_showManipulators
=
m_properties
->
addProperty
(
"show manipulators"
,
"Hide/Show manipulators."
,
true
,
m_propCondition
);
m_attach2Crosshair
=
m_properties
->
addProperty
(
"attach to crosshair"
,
"Attach to Crosshair"
,
false
,
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
);
...
...
@@ -238,6 +240,11 @@ void WMArbitraryPlane::updatePlane()
{
m_geode
->
removeDrawables
(
0
,
1
);
if
(
m_attach2Crosshair
->
get
()
)
{
m_s0
->
setPosition
(
WKernel
::
getRunningKernel
()
->
getSelectionManager
()
->
getCrosshair
()
->
getPosition
()
);
}
wmath
::
WPosition
p0
=
m_s0
->
getPosition
();
if
(
p0
!=
m_p0
)
...
...
@@ -297,6 +304,13 @@ void WMArbitraryPlane::updatePlane()
void
WMArbitraryPlane
::
SafeUpdateCallback
::
operator
()(
osg
::
Node
*
node
,
osg
::
NodeVisitor
*
nv
)
{
wmath
::
WPosition
ch
=
WKernel
::
getRunningKernel
()
->
getSelectionManager
()
->
getCrosshair
()
->
getPosition
();
wmath
::
WPosition
cho
=
m_module
->
getCenterPosition
();
if
(
ch
[
0
]
!=
cho
[
0
]
||
ch
[
1
]
!=
cho
[
1
]
||
ch
[
2
]
!=
cho
[
2
]
)
{
m_module
->
setDirty
();
}
if
(
m_module
->
isDirty
()
)
{
m_module
->
updatePlane
();
...
...
@@ -452,3 +466,8 @@ void WMArbitraryPlane::initUniforms( osg::StateSet* rootState )
rootState
->
addUniform
(
m_showCompleteUniform
);
}
wmath
::
WPosition
WMArbitraryPlane
::
getCenterPosition
()
{
return
m_s0
->
getPosition
();
}
src/modules/arbitraryPlane/WMArbitraryPlane.h
View file @
db844a13
...
...
@@ -141,6 +141,14 @@ protected:
*/
void
notifyTextureChange
();
/**
* getter for the position of the center manipulator
*
* \return center position
*/
wmath
::
WPosition
getCenterPosition
();
private:
/**
* A condition used to notify about changes in several properties.
...
...
@@ -158,6 +166,12 @@ private:
*/
WPropBool
m_showManipulators
;
/**
* If true the center position will move with the nav slice selection
*/
WPropBool
m_attach2Crosshair
;
/**
* When triggered the center manipulator is set to the nav slice position and the plane is aligned along
* the axial slice
...
...
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