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

Function LNLIB_UV_add

dotnet/CAPI/src/UV_CAPI.cpp:41–47  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

39}
40
41UV_C LNLIB_UV_add(UV_C a, UV_C b)
42{
43 LNLib::UV va(a.u, a.v);
44 LNLib::UV vb(b.u, b.v);
45 LNLib::UV result = va + vb;
46 return { result.GetU(), result.GetV() };
47}
48
49UV_C LNLIB_UV_subtract(UV_C a, UV_C b)
50{

Callers

nothing calls this directly

Calls 2

GetUMethod · 0.45
GetVMethod · 0.45

Tested by

no test coverage detected