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

Function LNLIB_UV_subtract

dotnet/CAPI/src/UV_CAPI.cpp:49–55  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

47}
48
49UV_C LNLIB_UV_subtract(UV_C a, UV_C b)
50{
51 LNLib::UV va(a.u, a.v);
52 LNLib::UV vb(b.u, b.v);
53 LNLib::UV result = va - vb;
54 return { result.GetU(), result.GetV() };
55}
56
57UV_C LNLIB_UV_negative(UV_C uv)
58{

Callers

nothing calls this directly

Calls 2

GetUMethod · 0.45
GetVMethod · 0.45

Tested by

no test coverage detected