Click or drag to resize
Ab4d.SharpEngine logo

HitTesterHitTest(Ray, PositionNormalTextureVertex, Int32, Int32, Int32, Boolean, Boolean) Method

Hit test a ray against the mesh with specified vertex and index buffer.

Namespace: Ab4d.SharpEngine.Utilities
Assembly: Ab4d.SharpEngine (in Ab4d.SharpEngine.dll) Version: 3.0.9208+3b2441d6a11f923f2600f40f4296bdc3d8b46035
Syntax
C#
public static RayHitTestResult? HitTest(
	 in Ray? localRay,
	PositionNormalTextureVertex[]? vertexBufferArray,
	int[]? indexBufferArray,
	int startTriangleIndicesIndex,
	int triangleIndicesCount,
	bool hitOnlyFrontFacingTriangles,
	bool getOnlyNextHitTest
)

Parameters

localRay  Ray
ray transformed to local coordinate system
vertexBufferArray  PositionNormalTextureVertex
vertex buffer as array of PositionNormalTexture
indexBufferArray  Int32
index buffer
startTriangleIndicesIndex  Int32
index in the TriangleIndices array where the hit testing will begin
triangleIndicesCount  Int32
number of TriangleIndices that will be checked
hitOnlyFrontFacingTriangles  Boolean
When true then only triangles that have normals (calculated from triangle positions) oriented in the opposite direction as the ray are returned (because ray is usually created from the camera's position this returns only triangles that are facing the camera).
getOnlyNextHitTest  Boolean
when true, then the next hit result is returned; when false all hit results are get and only the closest to the ray origin is returned.

Return Value

RayHitTestResult
DXRayHitTestResult when ray hits the mesh otherwise null is returned
See Also