You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Conception/drake-master/common/constants.h

28 lines
818 B

#pragma once
#include "drake/common/drake_deprecated.h"
namespace drake {
DRAKE_DEPRECATED("2023-06-01", "This constant is no longer used in Drake.")
constexpr int kQuaternionSize = 4;
DRAKE_DEPRECATED("2023-06-01", "This constant is no longer used in Drake.")
constexpr int kSpaceDimension = 3;
DRAKE_DEPRECATED("2023-06-01", "This constant is no longer used in Drake.")
constexpr int kRpySize = 3;
DRAKE_DEPRECATED("2023-06-01", "This constant is no longer used in Drake.")
constexpr int kTwistSize = 6;
DRAKE_DEPRECATED("2023-06-01", "This constant is no longer used in Drake.")
constexpr int kHomogeneousTransformSize = 16;
DRAKE_DEPRECATED("2023-06-01", "This constant is no longer used in Drake.")
constexpr int kRotmatSize = 9;
enum class ToleranceType { kAbsolute, kRelative };
} // namespace drake