Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
49
UV_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
57
UV_C LNLIB_UV_negative(UV_C uv)
58
{
Callers
nothing calls this directly
Calls
2
GetU
Method · 0.45
GetV
Method · 0.45
Tested by
no test coverage detected