Skip to content
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

Refresh docs in view of iDynTree 2 release #765

Merged
merged 4 commits into from
Nov 17, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
74 changes: 31 additions & 43 deletions README.md

Large diffs are not rendered by default.

13 changes: 6 additions & 7 deletions examples/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
# Copyright: 2015 Fondazione Istituto Italiano di Tecnologia
# Author: Silvio Traversaro
# CopyPolicy: Released under the terms of the GNU GPL v2.0.
#
# Copyright: 2020 Fondazione Istituto Italiano di Tecnologia
# CopyPolicy: Released under the terms of the MIT license

cmake_minimum_required(VERSION 2.8.11)

project("iDynTree_Examples")
cmake_minimum_required(VERSION 3.16)

add_subdirectory(KinDynComputationsWithEigen)
project(iDynTreeExamples)

add_subdirectory(cxx)

9 changes: 9 additions & 0 deletions examples/cxx/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Copyright: 2020 Fondazione Istituto Italiano di Tecnologia
# CopyPolicy: Released under the terms of the MIT license

cmake_minimum_required(VERSION 3.16)
S-Dafarra marked this conversation as resolved.
Show resolved Hide resolved

project(iDynTreeCxxExamples)

add_subdirectory(KinDynComputationsWithEigen)
add_subdirectory(InverseKinematics)
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@
// C headers
#include <cstdlib>

// Eigen headers
// Eigen headers
#include <Eigen/Core>

// iDynTree headers
#include <iDynTree/Model/FreeFloatingState.h>
#include <iDynTree/KinDynComputations.h>
#include <iDynTree/ModelIO/ModelLoader.h>

// Helpers function to convert between
// Helpers function to convert between
// iDynTree datastructures
#include <iDynTree/Core/EigenHelpers.h>

Expand Down
23 changes: 0 additions & 23 deletions examples/fixedBaseGravityCompensation/CMakeLists.txt

This file was deleted.

Loading