| 140 | struct ScalingSpatialMap |
| 141 | { |
| 142 | using VectorType = Eigen::Matrix<double, DIM, 1>; |
| 143 | |
| 144 | explicit ScalingSpatialMap(double scale_in = 1.0) : scale(scale_in) {} |
| 145 | |
| 146 | int getUnconstrainedDim(int index) const |
| 147 | { |
| 148 | (void)index; |
| 149 | return DIM; |
| 150 | } |
nothing calls this directly
no outgoing calls
no test coverage detected