Skip to content

Commit

Permalink
Compliance tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
enarhi authored and Fraser Greenroyd committed Feb 24, 2021
1 parent 6cb3dbf commit 3762274
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions Facade_Engine/Query/MaterialComposition.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ public static partial class Query
/**** Public Methods ****/
/***************************************************/

[Description("Gets all the Materials a Panel is composed of and in which ratios")]
[Input("panel", "The Panel to get the MaterialComposition from")]
[Output("materialComposition", "The kind of matter the Panel is composed of and in which ratios")]
[Description("Gets all the Materials a Panel is composed of and in which ratios.")]
[Input("panel", "The Panel to get the MaterialComposition from.")]
[Output("materialComposition", "The kind of matter the Panel is composed of and in which ratios.")]
public static MaterialComposition MaterialComposition(this Panel panel)
{
if (panel.Construction == null || panel.Construction.IThickness() < oM.Geometry.Tolerance.Distance)
Expand Down Expand Up @@ -81,9 +81,9 @@ public static MaterialComposition MaterialComposition(this Panel panel)

/***************************************************/

[Description("Gets all the Materials a Opening is composed of and in which ratios")]
[Input("opening", "The Opening to get the MaterialComposition from")]
[Output("materialComposition", "The kind of matter the Opening is composed of and in which ratios")]
[Description("Gets all the Materials a Opening is composed of and in which ratios.")]
[Input("opening", "The Opening to get the MaterialComposition from.")]
[Output("materialComposition", "The kind of matter the Opening is composed of and in which ratios.")]
public static MaterialComposition MaterialComposition(this Opening opening)
{
if (opening.OpeningConstruction == null && opening.Edges == null)
Expand Down Expand Up @@ -133,9 +133,9 @@ public static MaterialComposition MaterialComposition(this Opening opening)

/***************************************************/

[Description("Gets all the Materials a Opening is composed of and in which ratios")]
[Input("opening", "The Opening to get the MaterialComposition from")]
[Output("materialComposition", "The kind of matter the Opening is composed of and in which ratios")]
[Description("Gets all the Materials a Opening is composed of and in which ratios.")]
[Input("frameEdge", "The FrameEdge to get the MaterialComposition from.")]
[Output("materialComposition", "The kind of matter the Opening is composed of and in which ratios.")]
public static MaterialComposition MaterialComposition(this FrameEdge frameEdge)
{
List<MaterialComposition> matComps = new List<MaterialComposition>();
Expand Down

0 comments on commit 3762274

Please sign in to comment.