using System.Collections.Generic;
using Chernobyl.Mathematics.Movement;
namespace Chernobyl.Mathematics.Geometry
{
///
/// An that can have new points added to it so that the
/// arc can be modified or refined.
///
public interface IDynamicArc : IArc, IList
{
}
}