2DLightPathSimulator/LensSimulatorCore/Shapes/Circle.cs

13 lines
301 B
C#
Raw Permalink Normal View History

2023-06-06 22:56:56 +00:00
namespace LensSimulatorCore.Shapes;
public class Circle : Ellipse
{
public Circle(double radius, Point position) : base(0, radius, radius, position)
{
Radius = radius;
Position = position;
}
public double Radius { get; set; }
public Point Position { get; set; }
}