Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
multitouch
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
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
Taddeüs Kroes
multitouch
Commits
d5319a8c
Commit
d5319a8c
authored
13 years ago
by
Taddeüs Kroes
Browse files
Options
Downloads
Patches
Plain Diff
Removed old diagram.
parent
2a03be28
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
docs/data/diagram.tex
+0
-47
0 additions, 47 deletions
docs/data/diagram.tex
docs/report.tex
+0
-7
0 additions, 7 deletions
docs/report.tex
with
0 additions
and
54 deletions
docs/data/diagram.tex
deleted
100644 → 0
+
0
−
47
View file @
2a03be28
% Block+line styles
\tikzstyle
{
block
}
= [rectangle, draw, fill=blue!20, text width=5em,
text centered, rounded corners, minimum height=4em]
\tikzstyle
{
impl
}
= [rectangle, draw, fill=yellow, text width=5em,
text centered, rounded corners, minimum height=4em]
\tikzstyle
{
app
}
= [rectangle, draw, fill=green, text width=5em,
text centered, rounded corners, minimum height=4em]
\tikzstyle
{
line
}
= [draw, -latex']
\begin{tikzpicture}
[node distance = 7em, auto]
% Servers
\node
[block] (eventserver)
{
Event server
}
;
\node
[right of=eventserver] (eventserverdots)
{$
\cdots
$}
;
\node
[impl, right of=eventserverdots] (tuioserver)
{
TUIO server
}
;
\node
[block, below of=eventserver] (gestureserver)
{
Gesture server
}
;
\path
[line] (eventserver) -- node
{
trigger events of all touch points
}
(gestureserver);
% Window
\node
[block, below of=gestureserver] (window)
{
Window
}
;
\node
[right of=window] (windowdots)
{$
\cdots
$}
;
\path
[line] (gestureserver) -- node
{
trigger events of containing touch points
}
(window);
\node
[impl, right of=windowdots] (rectangularwindow)
{
Rectangular window
}
;
\node
[impl, right of=rectangularwindow] (circularwindow)
{
Circular window
}
;
% Tracker
\node
[block, below of=window] (tracker)
{
Gesture tracker
}
;
\node
[right of=tracker] (trackerdots)
{$
\cdots
$}
;
\path
[line] (window) -- node
{
delegate events
}
(tracker);
\node
[impl, right of=trackerdots] (taptracker)
{
Tap tracker
}
;
\node
[impl, right of=taptracker, text width=7em] (transformtracker)
{
Transformation tracker
}
;
% Gesture
\node
[block, below of=tracker] (gesture)
{
Gesture
}
;
\node
[right of=gesture] (gesturedots)
{$
\cdots
$}
;
\path
[line] (tracker) -- node
{
trigger by calling gesture handler
}
(gesture);
% Client application
\node
[app, left of=window, xshift=-11em] (app)
{
Client application
}
;
\path
[line, dashed] (app) -- node [left=20, near end]
{
add to window, bind gesture handler
}
(tracker);
\path
[line, dashed] (app) -- node [near start]
{
start
}
(gestureserver);
\path
[line, dashed] (app) -- node
{
add to gesture server
}
(window);
\end{tikzpicture}
This diff is collapsed.
Click to expand it.
docs/report.tex
+
0
−
7
View file @
d5319a8c
...
@@ -410,13 +410,6 @@ Python.
...
@@ -410,13 +410,6 @@ Python.
\simplediagram
\simplediagram
\completediagrams
\completediagrams
\section
{
Diagram of component relations
}
\begin{figure}
[H]
\input
{
data/diagram
}
% TODO: caption
\end{figure}
\section
{
Example usage
}
\section
{
Example usage
}
This section describes an example that illustrates the communication
This section describes an example that illustrates the communication
...
...
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