-
Notifications
You must be signed in to change notification settings - Fork 285
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tutorials #504
Tutorials #504
Conversation
added tutorials/introduction.md; modified mkdocs.yml
Add Disqus comment box and Facebook "like" and "share" buttons to the tutorial pages
Waiting a day for further comments before merging. |
@@ -52,7 +52,7 @@ int main(int argc, char* argv[]) | |||
assert(myWorld != nullptr); | |||
Eigen::Vector3d gravity(0.0, -9.81, 0.0); | |||
myWorld->setGravity(gravity); | |||
|
|||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Delete whitespace?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 Deleted
Is this PR merging from some other bugfix branches? It seems like there are some minor |
I don't think so. It seems those fixes were for the bugs found during the tutorial writing. Ideally, it would be good to create separate PR for the fixes but they were minor enough to be included in here I guess. |
@@ -23,3 +22,4 @@ TAGS | |||
*~ | |||
/nbproject/ | |||
/doxygen/html/ | |||
docs/readthedocs/site |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Newline at EOF?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 added
These tutorials look really good! Nice work guys. |
The purpose of this tutorial is to provide a quick introduction to using DART. We designed many hands-on exercises to make the learning effective and fun. To follow along with this tutorial, first locate the tutorial code in the directory: dart/tutorials. For each of the four tutorials, we provide the skeleton code as the starting point (e.g. tutorialMultiPendulum.cpp) and the final code as the answer to the tutorial (e.g. tutorialMultiPendulum-Finished.cpp). The examples are based on the APIs of DART 5.0.
Here is the prerelease version of the tutorial site for this PR. Note that once this PR is merged the official tutorial site will be this.
Any feedback is welcome!