using Deltares.WTIPiping; namespace Wti.Calculation.Piping { /// /// Creates instances which are required by the . /// internal class PipingSurfaceLineCreator { /// /// Creates a simple with a single at the origin. /// /// public static PipingSurfaceLine Create() { var surfaceLine = new PipingSurfaceLine(); surfaceLine.Points.Add(new PipingPoint(0, 0, 0)); return surfaceLine; } } }