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

Function LNLIB_XYZW_add

dotnet/CAPI/src/XYZW_CAPI.cpp:43–49  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

41}
42
43XYZW_C LNLIB_XYZW_add(XYZW_C a, XYZW_C b)
44{
45 LNLib::XYZW va(a.wx, a.wy, a.wz, a.w);
46 LNLib::XYZW vb(b.wx, b.wy, b.wz, b.w);
47 LNLib::XYZW res = va + vb;
48 return { res.GetWX(), res.GetWY(), res.GetWZ(), res.GetW() };
49}
50
51XYZW_C LNLIB_XYZW_subtract(XYZW_C a, XYZW_C b)
52{

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