-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rename locationvelocity to linearmovement, add documentation
- Loading branch information
Showing
27 changed files
with
157 additions
and
4,584 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
libtascar/tascar.xcodeproj/project.xcworkspace/contents.xcworkspacedata
This file was deleted.
Oops, something went wrong.
8 changes: 0 additions & 8 deletions
8
libtascar/tascar.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
This file was deleted.
Oops, something went wrong.
Binary file removed
BIN
-57.1 KB
...codeproj/project.xcworkspace/xcuserdata/tobias.xcuserdatad/UserInterfaceState.xcuserstate
Binary file not shown.
14 changes: 0 additions & 14 deletions
14
libtascar/tascar.xcodeproj/xcuserdata/tobias.xcuserdatad/xcschemes/xcschememanagement.plist
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
The \elem{locationvelocity} module can create linear motion of | ||
objects. The velocity \attr{v} and starting position \attr{p0} can be | ||
given in cartesian coordinates, e.g., | ||
\begin{lstlisting}[numbers=none] | ||
<locationvelocity actor="/scene/obj" v="1 2 3" p0="0 0 1" t0="2"/> | ||
\end{lstlisting} | ||
|
||
\begin{snugshade} | ||
{\footnotesize | ||
\label{attrtab:linearmovement} | ||
Attributes of element {\bf linearmovement}\nopagebreak | ||
|
||
\begin{tabularx}{\textwidth}{lXl} | ||
\hline | ||
name & description (type, unit) & def.\\ | ||
\hline | ||
\hline | ||
\indattr{actor} & pattern to match actor objects (string array) & \\ | ||
\hline | ||
\indattr{p0} & start position at time t0 (pos, m) & 0 0 0\\ | ||
\hline | ||
\indattr{t0} & start time t0 (double, s) & 0\\ | ||
\hline | ||
\indattr{v} & velocity vector (pos, m/s) & 1 1 0\\ | ||
\hline | ||
\end{tabularx} | ||
} | ||
\end{snugshade} | ||
|
||
All variables can be controlled via OSC; the \attr{actor} attribute is | ||
used as path prefix. In the example above this would result in these | ||
OSC variables: | ||
\begin{verbatim} | ||
/scene/obj/v/x (d) | ||
/scene/obj/v/y (d) | ||
/scene/obj/v/z (d) | ||
/scene/obj/p0/x (d) | ||
/scene/obj/p0/y (d) | ||
/scene/obj/p0/z (d) | ||
/scene/obj/t0 (d) | ||
/scene/obj/vpt (ddddddd) | ||
\end{verbatim} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1 @@ | ||
The \elem{locationvelocity} module can create linear motion of | ||
objects. The velocity \attr{v} and starting position \attr{p0} can be | ||
given in cartesian coordinates, e.g., | ||
\begin{lstlisting}[numbers=none] | ||
<locationvelocity actor="/*/obj" v="1 2 3" p0="0 0 1" t0="2"/> | ||
\end{lstlisting} | ||
|
||
The \elem{locationvelocity} module was renamed to \elem{linearmovement}. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.