Loading [MathJax]/extensions/tex2jax.js
TinyURDF 1.0.0
All Classes Files Functions Variables Typedefs Enumerations Enumerator Pages
joint_calibration.h
Go to the documentation of this file.
1#ifndef INCLUDE_TINYURDF_CORE_JOINT_CALIBRATION_H_
2#define INCLUDE_TINYURDF_CORE_JOINT_CALIBRATION_H_
3
4// Copyright 2024-2025 Wissem CHIHA
5
6#include <string>
7
9
11{
12 public:
14 bool isA(const char* name) const override;
15 std::string toString() const override;
16 void clear() override;
17 void setRising(double r);
18 void setFalling(double f);
19 void setReferencePosition(double rp);
20
21 private:
22 double referencePosition, rising, falling;
23};
24#endif // INCLUDE_TINYURDF_CORE_JOINT_CALIBRATION_H_
Definition joint_calibration.h:11
JointCalibration()
Definition joint_calibration.cc:4
void setFalling(double f)
Definition joint_calibration.cc:32
bool isA(const char *name) const override
Definition joint_calibration.cc:7
void setRising(double r)
Definition joint_calibration.cc:27
void clear() override
Definition joint_calibration.cc:21
std::string toString() const override
Definition joint_calibration.cc:11
void setReferencePosition(double rp)
Definition joint_calibration.cc:37
Definition property_base.h:9