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
0e624fe9
Commit
0e624fe9
authored
10 years ago
by
Luc Maisonobe
Browse files
Options
Downloads
Patches
Plain Diff
Changed arrows in activity diagrams.
parent
1b770b4b
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
design/duvenhage-inner-recursion-activity-diagram.puml
+5
-5
5 additions, 5 deletions
design/duvenhage-inner-recursion-activity-diagram.puml
design/duvenhage-top-loop-activity-diagram.puml
+11
-11
11 additions, 11 deletions
design/duvenhage-top-loop-activity-diagram.puml
with
16 additions
and
16 deletions
design/duvenhage-inner-recursion-activity-diagram.puml
+
5
−
5
View file @
0e624fe9
...
...
@@ -47,22 +47,22 @@
end note
stop
endif
:previous
←
start;
: crossings
←
line-of-sight segment crossings of next level sub-tiles;
:previous
⇦
start;
: crossings
⇦
line-of-sight segment crossings of next level sub-tiles;
note right
crossings can be computed either
using flat body hypothesis
or taking curvature into account
end note
repeat
:intersection
←
recurse(previous, crossing);
:intersection
⇦
recurse(previous, crossing);
if (found intersection?) then (yes)
: return intersection;
stop
endif
:previous
←
crossing;
:previous
⇦
crossing;
repeat while (more crossings?)
:intersection
←
recurse(previous, end);
:intersection
⇦
recurse(previous, end);
: return intersection;
stop
...
...
This diff is collapsed.
Click to expand it.
design/duvenhage-top-loop-activity-diagram.puml
+
11
−
11
View file @
0e624fe9
...
...
@@ -29,30 +29,30 @@
skinparam ActivityFontSize 11
start
: gp₀
←
point at altitude 0;
: gp₀
⇦
point at altitude 0;
: select tile containing gp₀;
: current point
←
null;
: hmax
←
tile maximum elevation;
: current point
⇦
null;
: hmax
⇦
tile maximum elevation;
while (current point is null)
: entry
←
point at altitude hmax;
: entry
⇦
point at altitude hmax;
if (locate entry point) then (in selected tile)
else (outside of selected tile)
: select tile containing entry point;
: hmax
←
max(hmax, tile maximum elevation);
: current point
←
null;
: hmax
⇦
max(hmax, tile maximum elevation);
: current point
⇦
null;
endif
endwhile
repeat
: exit
←
line-of-sight exit point from tile;
: intersection
←
Duvenhage(current, exit);
: exit
⇦
line-of-sight exit point from tile;
: intersection
⇦
Duvenhage(current, exit);
if (found intersection?) then (yes)
: return intersection;
stop
endif
if (tile exited at side?) then (no)
: searching
←
false;
: searching
⇦
false;
else (yes)
: forward point
←
point slightly after exit point;
: forward point
⇦
point slightly after exit point;
: select tile containing forward point;
if (DEM traversed between\ncurrent and forward points) then (yes)
: return current point;
...
...
@@ -61,7 +61,7 @@
end note
stop
endif
: current point
←
forward point;
: current point
⇦
forward point;
endif
repeat while (searching ?)
:search failed;
...
...
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