From e0114529f47dd89bf528edecc4e082e6c5c48cd1 Mon Sep 17 00:00:00 2001 From: Desai Wang Date: Thu, 8 Jun 2023 17:23:13 -0400 Subject: [PATCH] Moved URLs inside DocumentationURL --- Humans_Engine/Query/CvalueAnalysis.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Humans_Engine/Query/CvalueAnalysis.cs b/Humans_Engine/Query/CvalueAnalysis.cs index 20ca72354..7763ba3f1 100644 --- a/Humans_Engine/Query/CvalueAnalysis.cs +++ b/Humans_Engine/Query/CvalueAnalysis.cs @@ -38,12 +38,13 @@ public static partial class Query /**** Public Methods ****/ /***************************************************/ - [Description("Evaluate Cvalues for a single Audience. See the wiki page to understand how Cvalue is calculated. https://github.com/BHoM/documentation/wiki/BHoM-View-quality-conventions.")] + [Description("Evaluate Cvalues for a single Audience. See the wiki page to understand how Cvalue is calculated.")] [Input("audience", "Audience to evaluate.")] [Input("settings", "CvalueSettings to configure the evaluation.")] [Input("playingArea", "Polyline to be used for defining edge of performance or playing area.")] [Input("focalPoint", "Point defining a single focal point used by all spectators. Used only when CvalueFocalMethodEnum is SinglePoint.")] [Output("results", "Collection of Cvalue results.")] + [DocumentationURL("https://bhom.xyz/documentation/Conventions/BHoM-View-quality-conventions/", oM.Base.Attributes.Enums.DocumentationType.Documentation)] public static List CvalueAnalysis(this Audience audience, CvalueSettings settings, Polyline playingArea, Point focalPoint = null) { if (audience == null || settings == null || playingArea == null) @@ -58,12 +59,13 @@ public static List CvalueAnalysis(this Audience audience, CvalueSettings /***************************************************/ - [Description("Evaluate Cvalues for a List of Audience. See the wiki page to understand how Cvalue is calculated. https://github.com/BHoM/documentation/wiki/BHoM-View-quality-conventions.")] + [Description("Evaluate Cvalues for a List of Audience. See the wiki page to understand how Cvalue is calculated.")] [Input("audience", "Audience to evaluate.")] [Input("settings", "CvalueSettings to configure the evaluation.")] [Input("playingArea", "Polyline to be used for defining edge of performance or playing area.")] [Input("focalPoint", "Point defining a single focal point used by all spectators. Used only when CvalueFocalMethodEnum is SinglePoint.")] [Output("results", "Collection of Cvalue results.")] + [DocumentationURL("https://bhom.xyz/documentation/Conventions/BHoM-View-quality-conventions/", oM.Base.Attributes.Enums.DocumentationType.Documentation)] public static List> CvalueAnalysis(this List audience, CvalueSettings settings, Polyline playingArea, Point focalPoint = null) { if (audience == null || settings == null || playingArea == null)