| 
            
              ShellSectionMarchingAlgorithmsRayAABBTreeIntersections Method 
             | 
          
        
         
            Return the intersection of an AABB tree with a semi-infinite ray.
            
 
    Namespace: 
   Karamba.Results.ShellSection
    Assembly:
   KarambaCommon (in KarambaCommon.dll) Version: 2.2.0.4 (2.2.0.4)
Syntaxpublic static RayMeshIntersection RayAABBTreeIntersections(
	Point3 point,
	Vector3 dir,
	AABBTree aabb_tree
)
Public Shared Function RayAABBTreeIntersections ( 
	point As Point3,
	dir As Vector3,
	aabb_tree As AABBTree
) As RayMeshIntersection
public:
static RayMeshIntersection^ RayAABBTreeIntersections(
	Point3 point, 
	Vector3 dir, 
	AABBTree^ aabb_tree
)
static member RayAABBTreeIntersections : 
        point : Point3 * 
        dir : Vector3 * 
        aabb_tree : AABBTree -> RayMeshIntersection 
Parameters
- point
 - Type: Karamba.GeometryPoint3
Ray start point. - dir
 - Type: Karamba.GeometryVector3
Ray direction. - aabb_tree
 - Type: AABBTree
AABB tree to intersect. 
Return Value
Type: 
RayMeshIntersection Return 
 if fails.
See Also