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

Remove 5.3 Previous Version Attributes #2915

Merged
merged 1 commit into from
Sep 27, 2022
Merged
Show file tree
Hide file tree
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
1 change: 0 additions & 1 deletion Analytical_Engine/Modify/CleanRegion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ public static partial class Modify
[Input("angleTolerance", "The tolerance to be used for calculating angles when collapsing the perimeter to a polyline, and when cleaning the polyline as the tolerance defining a straight line. Default is set to BH.oM.Geometry.Tolerance.Angle.")]
[Input("minimumSegmentLength", "The tolerance of how long a segment should be when cleaning the polyline of the region. Default is set to BH.oM.Geometry.Tolerance.Distance.")]
[Output("region", "A region with a cleaned perimeter.")]
[PreviousVersion("5.3", "BH.Engine.Architecture.Modify.CleanRoom(BH.oM.Architecture.Elements.Room, System.Double, System.Double)")]
public static void CleanRegion(this IRegion region, double angleTolerance = BH.oM.Geometry.Tolerance.Angle, double minimumSegmentLength = BH.oM.Geometry.Tolerance.Distance)
{
if (region == null)
Expand Down
1 change: 0 additions & 1 deletion Environment_Engine/Modify/SetShadePanels.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ public static partial class Modify
[Input("panels", "A collection of Environment Panels.")]
[Input("shadeType", "The type of shade to assign to the shade panels.")]
[Output("shadePanels", "BHoM Environment panel representing the shade.")]
[PreviousVersion("5.3", "BH.Engine.Environment.Modify.SetShadePanels(System.Collections.Generic.List<BH.oM.Environment.Elements.Panel>)")]
public static List<Panel> SetShadePanels(this List<Panel> panels, PanelType shadeType = PanelType.Shade)
{
if (!shadeType.IsShade())
Expand Down