-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
96 additions
and
218 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
63 changes: 0 additions & 63 deletions
63
src/RevitOpeningPlacement/Services/IOutcomingTaskOffsetFinder.T.cs
This file was deleted.
Oops, something went wrong.
53 changes: 52 additions & 1 deletion
53
src/RevitOpeningPlacement/Services/IOutcomingTaskOffsetFinder.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,62 @@ | ||
using Autodesk.Revit.DB; | ||
|
||
using RevitOpeningPlacement.OpeningModels; | ||
|
||
namespace RevitOpeningPlacement.Services { | ||
/// <summary> | ||
/// Интерфейс, предоставляющий методы для определения отступа от элемента ВИС из активного файла<br/> | ||
/// до граней исходящего задания на отверстие из активного файла.<br/> | ||
/// Ожидается, что элемент ВИС пересекается с заданием на отверстие, но не выходит за габариты этого задания. | ||
/// </summary> | ||
internal interface IOutcomingTaskOffsetFinder : IOutcomingTaskOffsetFinder<Element> { | ||
internal interface IOutcomingTaskOffsetFinder { | ||
/// <summary> | ||
/// Находит сумму горизонтальных отступов от элемента ВИС до граней задания на отверстие | ||
/// </summary> | ||
/// <param name="opening">Задание на отверстие из активного файла</param> | ||
/// <param name="mepElement">Элемент ВИС из активного файла, проходящий через задание</param> | ||
/// <returns>Значение суммы горизонтальных отступов в единицах Revit (футах) от элемента ВИС | ||
/// до граней задания на отверстие.</returns> | ||
double FindHorizontalOffsetsSum(OpeningMepTaskOutcoming opening, Element mepElement); | ||
|
||
/// <summary> | ||
/// Находит сумму вертикальных отступов от элемента ВИС до граней задания на отверстие | ||
/// </summary> | ||
/// <param name="opening">Задание на отверстие из активного файла</param> | ||
/// <param name="mepElement">Элемент ВИС из активного файла, проходящий через задание</param> | ||
/// <returns>Значение суммы вертикальных отступов в единицах Revit (футах) от элемента ВИС | ||
/// до граней задания на отверстие.</returns> | ||
double FindVerticalOffsetsSum(OpeningMepTaskOutcoming opening, Element mepElement); | ||
|
||
/// <summary> | ||
/// Определяет минимальное допустимое значение суммы горизонтальных отступов от элемента ВИС | ||
/// до граней задания на отверстие | ||
/// </summary> | ||
/// <param name="mepElement">Элемент ВИС из активного файла</param> | ||
/// <returns>Минимальное допустимое значение суммы горизонтальных отступов в единицах Revit (футах)</returns> | ||
double GetMinHorizontalOffsetSum(Element mepElement); | ||
|
||
/// <summary> | ||
/// Определяет максимальное допустимое значение суммы горизонтальных отступов от элемента ВИС | ||
/// до граней задания на отверстие | ||
/// </summary> | ||
/// <param name="mepElement">Элемент ВИС из активного файла</param> | ||
/// <returns>Максимальное допустимое значение суммы горизонтальных отступов в единицах Revit (футах)</returns> | ||
double GetMaxHorizontalOffsetSum(Element mepElement); | ||
|
||
/// <summary> | ||
/// Определяет минимальное допустимое значение суммы вертикальных отступов от элемента ВИС | ||
/// до граней задания на отверстие | ||
/// </summary> | ||
/// <param name="mepElement">Элемент ВИС из активного файла</param> | ||
/// <returns>Минимальное допустимое значение суммы вертикальных отступов в единицах Revit (футах)</returns> | ||
double GetMinVerticalOffsetSum(Element mepElement); | ||
|
||
/// <summary> | ||
/// Определяет максимальное допустимое значение суммы вертикальных отступов от элемента ВИС | ||
/// до граней задания на отверстие | ||
/// </summary> | ||
/// <param name="mepElement">Элемент ВИС из активного файла</param> | ||
/// <returns>Максимальное допустимое значение суммы вертикальных отступов в единицах Revit (футах)</returns> | ||
double GetMaxVerticalOffsetSum(Element mepElement); | ||
} | ||
} |
Oops, something went wrong.