Chang UserManualRus

This commit is contained in:
Evgeny Redikultsev
2025-06-22 16:25:55 +05:00
parent 1ebe1bbcd1
commit d45d37edb7
15 changed files with 83 additions and 26 deletions

View File

@@ -1,14 +1,19 @@
using StructureHelperCommon.Infrastructures.Interfaces;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperLogics.Models.BeamShears
{
/// <summary>
/// Implements logic of calculating of coordinate of point where source level intersect inclinid section
/// </summary>
public interface ICoordinateByLevelLogic : ILogic
{
/// <summary>
/// Calculates coordinate of point where aource level intersect inclined section
/// </summary>
/// <param name="startCoord">Start coordinate of inclined section</param>
/// <param name="endCoord">End coordinate of inclined section</param>
/// <param name="relativeLevel">Source relative level, 0.5 - top level, -0.5 bottom level</param>
/// <returns></returns>
double GetCoordinate(double startCoord, double endCoord, double relativeLevel);
}
}