Skip to content

Humans_Engine: Update View Quality DocumentationURL #3216

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

Merged
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
4 changes: 2 additions & 2 deletions Humans_Engine/Query/CvalueAnalysis.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public static partial class Query
[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)]
[DocumentationURL("https://bhom.xyz/documentation/BHoM_Engine/Humans_Engine/ViewQuality/", 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 @@ -65,7 +65,7 @@ public static List<Cvalue> CvalueAnalysis(this Audience audience, CvalueSettings
[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)]
[DocumentationURL("https://bhom.xyz/documentation/BHoM_Engine/Humans_Engine/ViewQuality/", 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