Skip to content

Instantly share code, notes, and snippets.

@serguei-k
Last active April 13, 2018 06:42
Show Gist options
  • Save serguei-k/e7f5d66330d40a30e268c2ea55bddd22 to your computer and use it in GitHub Desktop.
Save serguei-k/e7f5d66330d40a30e268c2ea55bddd22 to your computer and use it in GitHub Desktop.
Translation Average
MVector translationAverage(const std::vector<MVector>& values)
{
if (values.empty()) return MVector::zero;
const MVector sum = std::accumulate(values.begin(), values.end(), MVector::zero);
return sum / values.size();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment