using System.Numerics;
using System.Runtime.InteropServices;
namespace Raylib_cs
{
///
/// Ray, ray for raycasting
///
[StructLayout(LayoutKind.Sequential)]
public partial struct Ray
{
///
/// Ray position (origin)
///
public Vector3 Position;
///
/// Ray direction
///
public Vector3 Direction;
public Ray(Vector3 position, Vector3 direction)
{
this.Position = position;
this.Direction = direction;
}
}
///
/// Raycast hit information
///
[StructLayout(LayoutKind.Sequential)]
public partial struct RayCollision
{
///
/// Did the ray hit something?
///
public CBool Hit;
///
/// Distance to the nearest hit
///
public float Distance;
///
/// Point of the nearest hit
///
public Vector3 Point;
///
/// Surface normal of hit
///
public Vector3 Normal;
}
}