MCPcopy Create free account
hub / github.com/BIMCoderLiang/LNLib / LNLIB_XYZ_dot_product

Function LNLIB_XYZ_dot_product

dotnet/CAPI/src/XYZ_CAPI.cpp:142–147  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

140}
141
142double LNLIB_XYZ_dot_product(XYZ_C a, XYZ_C b)
143{
144 LNLib::XYZ va(a.x, a.y, a.z);
145 LNLib::XYZ vb(b.x, b.y, b.z);
146 return va.DotProduct(vb);
147}
148
149XYZ_C LNLIB_XYZ_cross_product(XYZ_C a, XYZ_C b)
150{

Callers

nothing calls this directly

Calls 1

DotProductMethod · 0.45

Tested by

no test coverage detected