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

Function LNLIB_XYZW_multiply

dotnet/CAPI/src/XYZW_CAPI.cpp:59–64  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

57}
58
59XYZW_C LNLIB_XYZW_multiply(XYZW_C xyzw, double scalar)
60{
61 LNLib::XYZW va(xyzw.wx, xyzw.wy, xyzw.wz, xyzw.w);
62 LNLib::XYZW res = va * scalar;
63 return { res.GetWX(), res.GetWY(), res.GetWZ(), res.GetW() };
64}
65
66XYZW_C LNLIB_XYZW_divide(XYZW_C xyzw, double scalar)
67{

Callers

nothing calls this directly

Calls 4

GetWXMethod · 0.45
GetWYMethod · 0.45
GetWZMethod · 0.45
GetWMethod · 0.45

Tested by

no test coverage detected