MCPcopy Create free account
hub / github.com/EricLengyel/Terathon-Math-Library / operator *

Function operator *

TSVector3D.h:306–309  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

304 /// \related Vector3D
305
306 inline Vector3D operator *(const Vector3D& v, float n)
307 {
308 return (Vector3D(v.x * n, v.y * n, v.z * n));
309 }
310
311 /// \brief Returns the product of the 3D vector $v$ and the scalar $n$.
312 /// \related Vector3D

Callers

nothing calls this directly

Calls 2

Vector3DClass · 0.85
Point3DClass · 0.85

Tested by

no test coverage detected