Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
Rugged
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
Container Registry
Model registry
Operate
Environments
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
Orekit
Rugged
Commits
1f11f85d
Commit
1f11f85d
authored
11 years ago
by
Luc Maisonobe
Browse files
Options
Downloads
Patches
Plain Diff
Final keyword.
parent
c74acdd6
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
rugged-core/src/main/java/org/orekit/rugged/core/duvenhage/DuvenhageAlgorithm.java
+2
-3
2 additions, 3 deletions
.../org/orekit/rugged/core/duvenhage/DuvenhageAlgorithm.java
with
2 additions
and
3 deletions
rugged-core/src/main/java/org/orekit/rugged/core/duvenhage/DuvenhageAlgorithm.java
+
2
−
3
View file @
1f11f85d
...
@@ -42,15 +42,14 @@ public class DuvenhageAlgorithm implements IntersectionAlgorithm {
...
@@ -42,15 +42,14 @@ public class DuvenhageAlgorithm implements IntersectionAlgorithm {
/** {@inheritDoc} */
/** {@inheritDoc} */
@Override
@Override
public
void
setUpTilesManagement
(
TileUpdater
updater
,
int
maxCachedTiles
)
{
public
void
setUpTilesManagement
(
final
TileUpdater
updater
,
final
int
maxCachedTiles
)
{
cache
=
new
TilesCache
<
MinMaxTreeTile
>(
new
MinMaxTreeTileFactory
(),
cache
=
new
TilesCache
<
MinMaxTreeTile
>(
new
MinMaxTreeTileFactory
(),
updater
,
maxCachedTiles
);
updater
,
maxCachedTiles
);
}
}
/** {@inheritDoc} */
/** {@inheritDoc} */
@Override
@Override
public
GroundPoint
intersection
(
double
latitude0
,
double
longitude0
,
public
GroundPoint
intersection
(
final
double
latitude0
,
final
double
longitude0
,
final
Vector3D
direction
)
{
Vector3D
direction
)
{
// TODO: compute intersection
// TODO: compute intersection
return
null
;
return
null
;
}
}
...
...
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