PasteSite is open to the public, but with limited features. Register to be able to modify access rights, track your pastes and more...
If you prefer reading light text on a dark background to dark text on a light background, then you might want to try the dark theme.
"Untitled" by Anonymous [Plain Text]Actions: |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
PrimitiveController::PrimitiveController(
PotentialPtr potential,
EffectorTransformPtr effector_transform,
SensorTransformPtr sensor_transform,
CombinationStrategyPtr combination_strategy,
std::vector<PrimitiveControllerPtr> subordinate_controllers,
CBFFloat alpha,
CBFFloat beta,
CBFFloat max_gradient_norm,
bool init_reference_from_sensor_transform
) :
m_SubordinateControllers(subordinate_controllers),
m_SensorTransform(sensor_transform),
m_Potential(potential),
m_EffectorTransform(effector_transform),
m_CombinationStrategy(combination_strategy),
m_Alpha(alpha),
m_Beta(beta),
m_MaxGradientNorm(max_gradient_norm),
m_InitReferenceFromSensorTransform(init_reference_from_sensor_transform)
{
CBF_DEBUG("[PrimitiveController]: Constructor1")
}
|