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

Function LNLIB_PROJ_point_to_ray

dotnet/CAPI/src/Projection_CAPI.cpp:15–23  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13#include "XYZ.h"
14
15XYZ_C LNLIB_PROJ_point_to_ray(
16 XYZ_C origin,
17 XYZ_C direction,
18 XYZ_C point
19)
20{
21 LNLib::XYZ res = LNLib::Projection::PointToRay(ToXYZ(origin), ToXYZ(direction), ToXYZ(point));
22 return FromXYZ(res);
23}
24
25int LNLIB_PROJ_point_to_line(
26 XYZ_C start,

Callers

nothing calls this directly

Calls 2

ToXYZFunction · 0.85
FromXYZFunction · 0.85

Tested by

no test coverage detected