//----------------------------------------------------------------------- // // Copyright (c) 2010 Deltares. All rights reserved. // // B.S.T.I.M. The // tom.the@deltares.nl // 24-06-2010 // data class for xml file creator for DGSMStabDam.dll //----------------------------------------------------------------------- using Deltares.Geotechnics; using Deltares.Geotechnics.Soils; namespace Deltares.Dam.Data { using System; using Deltares.Standard; using Deltares.Soilbase; /// /// /// public class Geometry2DSectionParameters : ICloneable { public Geometry2DSectionParameters() { } public string SoilGeometry2DName { get; set; } public double XCoordinateSection { get; set; } public SoilProfile1D SoilProfile { get; set; } public void Assign(Geometry2DSectionParameters geometry2DSectionParameters) { this.SoilGeometry2DName = geometry2DSectionParameters.SoilGeometry2DName; this.XCoordinateSection = geometry2DSectionParameters.XCoordinateSection; } public Geometry2DSectionParameters Clone() { Geometry2DSectionParameters geometry2DSectionParameters = new Geometry2DSectionParameters(); geometry2DSectionParameters.Assign(this); return geometry2DSectionParameters; } } }