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

Function LNLIB_XYZ_divide

dotnet/CAPI/src/XYZ_CAPI.cpp:82–87  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

80}
81
82XYZ_C LNLIB_XYZ_divide(XYZ_C xyz, double scalar)
83{
84 LNLib::XYZ va(xyz.x, xyz.y, xyz.z);
85 LNLib::XYZ res = va / scalar;
86 return { res.GetX(), res.GetY(), res.GetZ() };
87}
88
89XYZ_C LNLIB_XYZ_create_random_orthogonal(XYZ_C xyz)
90{

Callers

nothing calls this directly

Calls 3

GetXMethod · 0.45
GetYMethod · 0.45
GetZMethod · 0.45

Tested by

no test coverage detected