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

Method ComputeRays

dotnet/PInvoke/src/Intersection.cs:18–27  ·  view source on GitHub ↗
(
            XYZ point0, XYZ vector0,
            XYZ point1, XYZ vector1,
            out double param0,
            out double param1,
            out XYZ intersectPoint)

Source from the content-addressed store, hash-verified

16 public static partial class LNLibIntersection
17 {
18 [DllImport(
19 LNLIB_CAPI_DLL,
20 EntryPoint = "LNLIB_INTERSECT_compute_rays",
21 CallingConvention = CallingConvention.Cdecl)]
22 public static extern CurveCurveIntersectionType ComputeRays(
23 XYZ point0, XYZ vector0,
24 XYZ point1, XYZ vector1,
25 out double param0,
26 out double param1,
27 out XYZ intersectPoint);
28
29 [DllImport(
30 LNLIB_CAPI_DLL,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected