Added docs and project management tool update

This commit is contained in:
n00b
2024-10-06 01:39:47 -04:00
parent 00309fa481
commit 641c5c86ca
1544 changed files with 10572 additions and 2904 deletions

View File

@@ -1,4 +1,15 @@
#title GetLinePlaneIntersection [RCBasic Doc]
#header function GetLinePlaneIntersection(ByRef line_point, ByRef line_direction, ByRef plane_point_1, ByRef plane_point_2, ByRef plane_point_3, ByRef intersection)
This function calculates the intersection between a line and a plane in 3D space and stores the result in intersection
Parameters:
#list ul
#li line_point - An array with an (x,y,z) point representing the start of a line
#li line_direction - An array with an (x,y,z) point representing another point on the line in the direction its moving
#li plane_point_1 - An array with an (x,y,z) point representing a point on a plane in 3D space
#li plane_point_2 - An array with an (x,y,z) point representing a point on a plane in 3D space
#li plane_point_3 - An array with an (x,y,z) point representing a point on a plane in 3D space
#/list
Returns true if intersection point is on the plane