Skip to content

Instantly share code, notes, and snippets.

@zao
Created July 26, 2015 14:31
Show Gist options
  • Save zao/769918797459d1624f9d to your computer and use it in GitHub Desktop.
Save zao/769918797459d1624f9d to your computer and use it in GitHub Desktop.
Vector math. Yay.
inline float3& operator *= (float3& lhs, float rhs) {
lhs.x += rhs;
lhs.y += rhs;
lhs.z += rhs;
return lhs;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment