MCPcopy Create free account
hub / github.com/LabSound/LabSound / cross

Function cross

include/LabSound/core/FloatPoint3D.h:82–85  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

80}
81
82inline float3 cross(const float3 & a, const float3 & b)
83{
84 return {a.y * b.z - a.z * b.y, a.z * b.x - a.x * b.z, a.x * b.y - a.y * b.x};
85}
86
87inline float magnitude(const float3 & v)
88{

Callers 2

distanceFromPointToLineFunction · 0.85
getAzimuthElevationMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected