We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
struct AngleStatus { const float center = 0.0f; const float left_max = -0.3f; const float right_max = 0.3f; const float speed = 0.04f; }
を↓の感じにすれば全部にconstをつけずに簡単に記述できます。
const AngleStatus angle_status;
There was an error while loading. Please reload this page.