1 #ifndef SimTK_SIMBODY_OBSERVED_POINT_FITTER_H_
2 #define SimTK_SIMBODY_OBSERVED_POINT_FITTER_H_
52 static Real findBestFit
58 Real tolerance=0.001);
61 static Real findBestFit
64 const std::vector<MobilizedBodyIndex>& bodyIxs,
65 const std::vector<std::vector<Vec3> >& stations,
66 const std::vector<std::vector<Vec3> >& targetLocations,
71 return findBestFit(system,state,
73 stationCopy, targetCopy, tolerance);
90 static Real findBestFit
97 Real tolerance=0.001);
100 static Real findBestFit
103 const std::vector<MobilizedBodyIndex>& bodyIxs,
104 const std::vector<std::vector<Vec3> >& stations,
105 const std::vector<std::vector<Vec3> >& targetLocations,
106 const std::vector<std::vector<Real> >& weights,
107 Real tolerance=0.001)
112 return findBestFit(system,state,
114 stationCopy, targetCopy, weightCopy,
124 class OptimizerFunction;
129 #endif // SimTK_SIMBODY_OBSERVED_POINT_FITTER_H_