Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Humans_Engine: Moved URLs inside DocumentationURL #3080

Merged
merged 1 commit into from
Jun 9, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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