forked from RobotLocomotion/drake
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New logo subtitle. Replace long text list of features with a simple table. First pass has some simple graphics and links to the c++ doxygen. I plan to fill in each of these boxes with links to sphynx tutorials (using pydrake) in the next passes.We can also make better images. Zap some old, stale documentaiton. Zap outdated models text referenced in RobotLocomotion#9287 Added some follow-on TODOs: RobotLocomotion#10965, RobotLocomotion#10966, RobotLocomotion#10967
- Loading branch information
1 parent
bbb3552
commit 2bfd7eb
Showing
13 changed files
with
455 additions
and
382 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.
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 |
---|---|---|
|
@@ -332,3 +332,4 @@ Version Control | |
:maxdepth: 1 | ||
|
||
no_push_to_origin | ||
|
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,9 @@ | ||
\documentclass[10pt]{article} | ||
\usepackage[usenames]{color} %used for font color | ||
\usepackage{amssymb} %maths | ||
\usepackage{amsmath} %maths | ||
\usepackage[utf8]{inputenc} %useful to type directly diacritic characters | ||
\begin{document} | ||
\begin{align*}\min_x \ \ \ & f(x) \\ | ||
\text{s.t. } \ & g(x) \le 0\end{align*} | ||
\end{document} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,39 @@ | ||
\documentclass[10pt]{article} | ||
\usepackage[usenames]{color} %used for font color | ||
\usepackage{amssymb} %maths | ||
\usepackage{amsmath} %maths | ||
\usepackage[utf8]{inputenc} %useful to type directly diacritic characters | ||
\usepackage{tikz} | ||
\usetikzlibrary{shapes,arrows} | ||
\begin{document} | ||
\tikzstyle{block} = [draw, rectangle, | ||
minimum height=3em, minimum width=6em] | ||
\tikzstyle{sum} = [draw, circle, node distance=1cm] | ||
\tikzstyle{input} = [coordinate] | ||
\tikzstyle{output} = [coordinate] | ||
\tikzstyle{pinstyle} = [pin edge={to-,thin,black}] | ||
|
||
% The block diagram code is probably more verbose than necessary | ||
\begin{tikzpicture}[auto, node distance=2cm,>=latex'] | ||
% We start by placing the blocks | ||
\node [input, name=input] {}; | ||
\node [sum, right of=input] (sum) {}; | ||
\node [block, right of=sum] (controller) {Controller}; | ||
\node [block, right of=controller, pin={[pinstyle]above:Disturbances}, | ||
node distance=3cm] (system) {System}; | ||
% We draw an edge between the controller and system block to | ||
% calculate the coordinate u. We need it to place the measurement block. | ||
\draw [->] (controller) -- node[name=u] {$u$} (system); | ||
\node [output, right of=system] (output) {}; | ||
\node [block, below of=u] (measurements) {Estimator}; | ||
|
||
% Once the nodes are placed, connecting them is easy. | ||
\draw [draw,->] (input) -- node {$r$} (sum); | ||
\draw [->] (sum) -- node {$e$} (controller); | ||
\draw [->] (system) -- node [name=y] {$y$}(output); | ||
\draw [->] (y) |- (measurements); | ||
\draw [->] (measurements) -| node[pos=0.99] {$-$} | ||
node [near end] {$y_m$} (sum); | ||
\end{tikzpicture} | ||
|
||
\end{document} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
:orphan: | ||
|
||
This file exists only to install the images for the html table in index.rst. | ||
Note that the files must also be listed in the `gen_sphinx` bazel target. | ||
|
||
.. image:: images/mathematical_program.svg | ||
.. image:: images/systems.svg | ||
|
Oops, something went wrong.