15 lines
344 B
C#
15 lines
344 B
C#
|
using LensSimulatorCore.Shapes;
|
|||
|
|
|||
|
namespace LensSimulatorCore;
|
|||
|
|
|||
|
public class RayCastHitInfo
|
|||
|
{
|
|||
|
public RayCastHitInfo(Point? hitPosition, double angleOfIncidence)
|
|||
|
{
|
|||
|
HitPosition = hitPosition;
|
|||
|
AngleOfIncidence = angleOfIncidence;
|
|||
|
}
|
|||
|
|
|||
|
public Point? HitPosition { get; }
|
|||
|
public double AngleOfIncidence { get; }
|
|||
|
}
|