17 lines
442 B
C#
17 lines
442 B
C#
namespace MultiWheelC.TrajectoryPlanning.EMPlanner;
|
|
|
|
public sealed class ValidationConfiguration
|
|
{
|
|
public double SpatialToleranceMeters { get; set; }
|
|
public double KinematicTolerance { get; set; }
|
|
|
|
internal ValidationConfiguration Copy()
|
|
{
|
|
return new ValidationConfiguration
|
|
{
|
|
SpatialToleranceMeters = SpatialToleranceMeters,
|
|
KinematicTolerance = KinematicTolerance,
|
|
};
|
|
}
|
|
}
|