Skip to content

Commit

Permalink
fix versioning file names
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom-Kingstone authored and Fraser Greenroyd committed Jan 12, 2024
1 parent bcf7e39 commit bbc9fb5
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 8 deletions.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion Spatial_Engine/Query/NewInternalElement2D.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public static partial class Query
[Description("Creates a IElement2D of a type which can be assigned to the IElement2D.")]
[Input("element2D", "A IElement2D with a internal IElement2D type defined. The element is only used to identify the type of internal IElement2D to create, and will remain unchanged by this method.")]
[Output("element2D", "A internal IElement2D which can be assigned to the IElement2D. Returns null if the IElement2D does not have a type of internal IElement2D.")]
[PreviousVersion("7.1", "BH.Engine.Spatial.Create.NewInternalElement2D(BH.oM.Dimensional.IElement2D)")]
[PreviousVersion("7.1", "BH.Engine.Spatial.Create.INewInternalElement2D(BH.oM.Dimensional.IElement2D)")]
public static IElement2D INewInternalElement2D(this IElement2D element2D)
{
return Base.Compute.RunExtensionMethod(element2D, "NewInternalElement2D") as IElement2D;
Expand Down
6 changes: 0 additions & 6 deletions Spatial_Engine/Versioning71.json

This file was deleted.

4 changes: 3 additions & 1 deletion Spatial_Engine/Versioning_71.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@
},
"MessageForDeleted": {
"BH.Engine.Spatial.Query.Area(BH.oM.Dimensional.IElement0D)": "Querying the area of a 0 diemnsional is not possible. The method was added in error and should not have been available. Area methods are suitable for 2D objects and above.",
"BH.Engine.Spatial.Query.Area(BH.oM.Dimensional.IElement1D)": "Area of an IElement1D cannot be queried because IElement1D has only 1 dimension, i.e. should not be represented as a region even if closed. Method has been removed to avoid confusion."
"BH.Engine.Spatial.Query.Area(BH.oM.Dimensional.IElement1D)": "Area of an IElement1D cannot be queried because IElement1D has only 1 dimension, i.e. should not be represented as a region even if closed. Method has been removed to avoid confusion.",
"BH.Engine.Spatial.Create.INewElement0D(BH.oM.Dimensional.IElement1D, BH.oM.Geometry.Point)": "NewElement methods were refactored in BHoM 3.2 with these methods marked for deletion, and have now been removed.",
"BH.Engine.Spatial.Create.INewElement1D(BH.oM.Dimensional.IElement2D, BH.oM.Geometry.ICurve)": "NewElement methods were refactored in BHoM 3.2 with these methods marked for deletion, and have now been removed."
},
"MessageForNoUpgrade": {

Expand Down

0 comments on commit bbc9fb5

Please sign in to comment.