From 37622745daa5ae55412d470ace7e14f669564996 Mon Sep 17 00:00:00 2001 From: Erik Narhi Date: Tue, 23 Feb 2021 11:25:57 -0800 Subject: [PATCH] Compliance tweaks --- Facade_Engine/Query/MaterialComposition.cs | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/Facade_Engine/Query/MaterialComposition.cs b/Facade_Engine/Query/MaterialComposition.cs index feb1043f4..b14c3b995 100644 --- a/Facade_Engine/Query/MaterialComposition.cs +++ b/Facade_Engine/Query/MaterialComposition.cs @@ -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) @@ -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) @@ -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 matComps = new List();