Skip to content

Commit

Permalink
Moved URLs inside DocumentationURL
Browse files Browse the repository at this point in the history
  • Loading branch information
desaiwangBH authored and Fraser Greenroyd committed Jun 9, 2023
1 parent 8e0302c commit e011452
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Humans_Engine/Query/CvalueAnalysis.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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<Cvalue> CvalueAnalysis(this Audience audience, CvalueSettings settings, Polyline playingArea, Point focalPoint = null)
{
if (audience == null || settings == null || playingArea == null)
Expand All @@ -58,12 +59,13 @@ public static List<Cvalue> 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<List<Cvalue>> CvalueAnalysis(this List<Audience> audience, CvalueSettings settings, Polyline playingArea, Point focalPoint = null)
{
if (audience == null || settings == null || playingArea == null)
Expand Down

0 comments on commit e011452

Please sign in to comment.