2DLightPathSimulator/LensSimulatorCore/Workspace/LightSource.cs

11 lines
208 B
C#
Raw Permalink Normal View History

2023-06-06 22:56:56 +00:00
namespace LensSimulatorCore.Workspace;
public class LightSource
{
public LightSource(LightPathSection section)
{
Section = section;
}
private LightPathSection Section { get; set; }
}