// Copyright (C) Stichting Deltares 2019. All rights reserved. // // This file is part of the Dam Engine. // // The Dam Engine is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Affero General Public License for more details. // // You should have received a copy of the GNU Affero General Public License // along with this program. If not, see . // // All names, logos, and references to "Deltares" are registered trademarks of // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. namespace Deltares.DamEngine.Data.Geometry { /// /// Class holding all geometry related constants /// public static class GeometryConstants { /// /// The default left limit of the geometry /// public const double DefaultLeftLimitGeometry = 0.0; /// /// The default right limit of the geometry /// public const double DefaultRightLimitGeometry = 50.0; /// /// The default bottom limit of the geometry /// public const double DefaultBottomLimitGeometry = -10.0; /// /// The accuracy as used for the geometry objects /// public const double Accuracy = 0.001; /// /// The volumic weight of water /// public const double VolumicWeightOfWater = 9.81; } /// /// Pointtype as used by intersection methods and other helper methods to determine for which plane the method has to work. /// // public enum PointType // { // /// // /// The xy plane // /// // XY, // /// // /// The xz plane // /// // XZ // } }