Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
multitouch
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Taddeüs Kroes
multitouch
Commits
d5319a8c
Commit
d5319a8c
authored
Jun 07, 2012
by
Taddeüs Kroes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed old diagram.
parent
2a03be28
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
54 deletions
+0
-54
docs/data/diagram.tex
docs/data/diagram.tex
+0
-47
docs/report.tex
docs/report.tex
+0
-7
No files found.
docs/data/diagram.tex
deleted
100644 → 0
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}
docs/report.tex
View file @
d5319a8c
...
...
@@ -410,13 +410,6 @@ Python.
\simplediagram
\completediagrams
\section
{
Diagram of component relations
}
\begin{figure}
[H]
\input
{
data/diagram
}
% TODO: caption
\end{figure}
\section
{
Example usage
}
This section describes an example that illustrates the communication
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment