mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-14 05:40:05 +00:00
23 lines
822 B
C++
23 lines
822 B
C++
#ifndef MINITAUR_SIMULATION_SETUP_H
|
|
#define MINITAUR_SIMULATION_SETUP_H
|
|
|
|
#include "Bullet3Common/b3Vector3.h"
|
|
#include "Bullet3Common/b3Quaternion.h"
|
|
class MinitaurSetup
|
|
{
|
|
struct MinitaurSetupInternalData* m_data;
|
|
void resetPose(class b3RobotSimulatorClientAPI* sim);
|
|
|
|
public:
|
|
MinitaurSetup();
|
|
virtual ~MinitaurSetup();
|
|
|
|
int setupMinitaur(class b3RobotSimulatorClientAPI* sim, const class b3Vector3& startPos=b3MakeVector3(0,0,0), const class b3Quaternion& startOrn = b3Quaternion(0,0,0,1));
|
|
|
|
void setDesiredMotorAngle(class b3RobotSimulatorClientAPI* sim, const char* motorName, double desiredAngle, double maxTorque=3,double kp=0.1, double kd=0.9);
|
|
|
|
// Added for testing
|
|
int getToeForces(class b3RobotSimulatorClientAPI* sim, int groundid, b3Vector3 normalForcesOut[4]);
|
|
};
|
|
#endif //MINITAUR_SIMULATION_SETUP_H
|
|
|