Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
BigDataViewer_Core_Extension
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
BioinformaticDataCompression
BigDataViewer_Core_Extension
Commits
0cb6cd48
Commit
0cb6cd48
authored
11 years ago
by
Tobias Pietzsch
Browse files
Options
Downloads
Plain Diff
Merge remote-tracking branch 'github/master'
parents
f6b7cf5d
45d8daa6
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/bdv/viewer/render/Prefetcher.java
+4
-4
4 additions, 4 deletions
src/main/java/bdv/viewer/render/Prefetcher.java
with
4 additions
and
4 deletions
src/main/java/bdv/viewer/render/Prefetcher.java
+
4
−
4
View file @
0cb6cd48
...
@@ -83,10 +83,10 @@ public class Prefetcher
...
@@ -83,10 +83,10 @@ public class Prefetcher
// compute bounding box
// compute bounding box
final
RealPoint
[]
screenCorners
=
new
RealPoint
[
4
];
final
RealPoint
[]
screenCorners
=
new
RealPoint
[
4
];
screenCorners
[
0
]
=
new
RealPoint
(
0
,
0
,
0
);
screenCorners
[
0
]
=
new
RealPoint
(
0
d
,
0
d
,
0
d
);
screenCorners
[
1
]
=
new
RealPoint
(
w
,
0
,
0
);
screenCorners
[
1
]
=
new
RealPoint
(
w
,
0
d
,
0
d
);
screenCorners
[
2
]
=
new
RealPoint
(
w
,
h
,
0
);
screenCorners
[
2
]
=
new
RealPoint
(
w
,
h
,
0
d
);
screenCorners
[
3
]
=
new
RealPoint
(
0
,
h
,
0
);
screenCorners
[
3
]
=
new
RealPoint
(
0
d
,
h
,
0
d
);
final
RealPoint
sourceCorner
=
new
RealPoint
(
3
);
final
RealPoint
sourceCorner
=
new
RealPoint
(
3
);
final
double
[]
bbMin
=
new
double
[]
{
Double
.
POSITIVE_INFINITY
,
Double
.
POSITIVE_INFINITY
,
Double
.
POSITIVE_INFINITY
};
final
double
[]
bbMin
=
new
double
[]
{
Double
.
POSITIVE_INFINITY
,
Double
.
POSITIVE_INFINITY
,
Double
.
POSITIVE_INFINITY
};
final
double
[]
bbMax
=
new
double
[]
{
Double
.
NEGATIVE_INFINITY
,
Double
.
NEGATIVE_INFINITY
,
Double
.
NEGATIVE_INFINITY
};
final
double
[]
bbMax
=
new
double
[]
{
Double
.
NEGATIVE_INFINITY
,
Double
.
NEGATIVE_INFINITY
,
Double
.
NEGATIVE_INFINITY
};
...
...
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