-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding some non-zero weight to tracking markers in initial IK, changi…
…ng the trajectory rendering APIs to handle TRCs
- Loading branch information
Showing
22 changed files
with
936 additions
and
522 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.8.1 | ||
0.8.2 |
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,26 @@ | ||
#ifndef DART_BIOMECH_FORCE_PLATE_HPP_ | ||
#define DART_BIOMECH_FORCE_PLATE_HPP_ | ||
|
||
#include <vector> | ||
|
||
#include <Eigen/Dense> | ||
|
||
#include "dart/math/MathTypes.hpp" | ||
|
||
namespace dart { | ||
|
||
namespace biomechanics { | ||
|
||
struct ForcePlate | ||
{ | ||
Eigen::Vector3s worldOrigin; | ||
std::vector<Eigen::Vector3s> corners; | ||
std::vector<Eigen::Vector3s> centersOfPressure; | ||
std::vector<Eigen::Vector3s> moments; | ||
std::vector<Eigen::Vector3s> forces; | ||
}; | ||
|
||
} // namespace biomechanics | ||
} // namespace dart | ||
|
||
#endif |
Oops, something went wrong.