Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fslpy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Michiel Cottaar
fslpy
Commits
f1c8b7d8
Commit
f1c8b7d8
authored
10 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Patches
Plain Diff
Cursor not drawn out of bounds on lb canvas
parent
8ccc4c8b
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
fsl/fslview/gl/lightboxcanvas.py
+16
-7
16 additions, 7 deletions
fsl/fslview/gl/lightboxcanvas.py
with
16 additions
and
7 deletions
fsl/fslview/gl/lightboxcanvas.py
+
16
−
7
View file @
f1c8b7d8
...
...
@@ -162,6 +162,12 @@ class LightBoxCanvas(slicecanvas.SliceCanvas):
return
tuple
(
pos
)
def
getTotalRows
(
self
):
"""
Returns the total number of rows that may be displayed.
"""
return
self
.
_totalRows
def
__init__
(
self
,
imageList
,
zax
=
0
):
"""
Create a :class:`LightBoxCanvas` object.
...
...
@@ -213,12 +219,6 @@ class LightBoxCanvas(slicecanvas.SliceCanvas):
'
{}_zPosChanged
'
.
format
(
self
.
name
),
self
.
_zPosChanged
)
def
getTotalRows
(
self
):
"""
Returns the total number of rows that may be displayed.
"""
return
self
.
_totalRows
def
_slicePropsChanged
(
self
,
*
a
):
"""
Called when any of the slice properties change. Regenerates slice
...
...
@@ -515,9 +515,18 @@ class LightBoxCanvas(slicecanvas.SliceCanvas):
ylen
=
self
.
imageList
.
bounds
.
getLen
(
self
.
yax
)
xmin
=
self
.
imageList
.
bounds
.
getLo
(
self
.
xax
)
ymin
=
self
.
imageList
.
bounds
.
getLo
(
self
.
yax
)
row
=
self
.
_totalRows
-
int
(
np
.
floor
(
sliceno
/
self
.
ncols
))
-
1
row
=
int
(
np
.
floor
(
sliceno
/
self
.
ncols
))
col
=
int
(
np
.
floor
(
sliceno
%
self
.
ncols
))
# don't draw the cursor if it is on a
# non-existent or non-displayed slice
if
sliceno
>
self
.
_nslices
:
return
if
row
<
self
.
topRow
:
return
if
row
>
self
.
topRow
+
self
.
nrows
:
return
# in GL space, the top row is actually the bottom row
row
=
self
.
_totalRows
-
row
-
1
xpos
,
ypos
=
self
.
worldToCanvas
(
*
self
.
pos
.
xyz
)
xverts
=
np
.
zeros
((
2
,
3
))
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment