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

7.1 Deployment #250

Merged
merged 14 commits into from
Mar 27, 2024
2 changes: 0 additions & 2 deletions CONTRIBUTING.md

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Grab the [latest installer](https://bhom.xyz/) and a selection of [sample script
## Getting Started for Developers 🤖

If you want to build the BHoM and the Toolkits from source, it's hopefully easy! 😄
Do take a look at our specific wiki pages here: [Getting Started for Developers](https://bhom.xyz/documentation/Contributing/Getting-started-for-developers/)
Do take a look at our specific wiki pages here: [Getting Started for Developers](https://bhom.xyz/documentation/Guides-and-Tutorials/Coding-with-BHoM/)


## Want to Contribute? ##
Expand Down
9 changes: 5 additions & 4 deletions Rhinoceros_Engine/Compute/CaptureNamedViews.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
*
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
Expand Down Expand Up @@ -30,10 +30,10 @@
using Rhino;
using Rhino.Display;
using System.Drawing;
using BH.oM.Rhinoceros.ViewCapture;
using BH.oM.Adapters.Rhinoceros.ViewCapture;
using System.Drawing.Imaging;

namespace BH.Engine.Rhinoceros
namespace BH.Engine.Adapters.Rhinoceros
{
public static partial class Compute
{
Expand Down Expand Up @@ -100,3 +100,4 @@ public static bool CaptureNamedViews(bool active = false, string folderPath = ""
/***************************************************/
}
}

9 changes: 5 additions & 4 deletions Rhinoceros_Engine/Compute/CaptureView.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
*
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
Expand Down Expand Up @@ -30,10 +30,10 @@
using Rhino;
using Rhino.Display;
using System.Drawing;
using BH.oM.Rhinoceros.ViewCapture;
using BH.oM.Adapters.Rhinoceros.ViewCapture;
using System.Drawing.Imaging;

namespace BH.Engine.Rhinoceros
namespace BH.Engine.Adapters.Rhinoceros
{
public static partial class Compute
{
Expand Down Expand Up @@ -81,9 +81,9 @@
/**** Private Methods ****/
/***************************************************/

[Description("")]

Check warning on line 84 in Rhinoceros_Engine/Compute/CaptureView.cs

View check run for this annotation

BHoMBot-CI / beta-documentation-compliance

Rhinoceros_Engine/Compute/CaptureView.cs#L84

Documentation attribute should end with grammatically correct punctuation (., !, or ?) - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/AttributeHasEndingPunctuation
[Input("", "")]

Check warning on line 85 in Rhinoceros_Engine/Compute/CaptureView.cs

View check run for this annotation

BHoMBot-CI / beta-documentation-compliance

Rhinoceros_Engine/Compute/CaptureView.cs#L85

Documentation attribute should end with grammatically correct punctuation (., !, or ?) - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/AttributeHasEndingPunctuation
[Output("", "")]

Check warning on line 86 in Rhinoceros_Engine/Compute/CaptureView.cs

View check run for this annotation

BHoMBot-CI / beta-documentation-compliance

Rhinoceros_Engine/Compute/CaptureView.cs#L86

Documentation attribute should end with grammatically correct punctuation (., !, or ?) - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/AttributeHasEndingPunctuation
private static bool CaptureActiveView(RhinoDoc doc, IViewCaptureSettings settings, string folderName, string imageName)
{
var view = doc.Views.ActiveView;
Expand Down Expand Up @@ -216,3 +216,4 @@
/***************************************************/
}
}

7 changes: 4 additions & 3 deletions Rhinoceros_Engine/Compute/CollectAllModelData.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
*
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
Expand Down Expand Up @@ -31,7 +31,7 @@
using System.Drawing;
using Rhino.Geometry;

namespace BH.Engine.Rhinoceros
namespace BH.Engine.Adapters.Rhinoceros
{
public static partial class Compute
{
Expand Down Expand Up @@ -81,3 +81,4 @@ public static Output<List<string>, List<Color>, List<GeometryBase>> CollectAllMo
/***************************************************/
}
}

5 changes: 3 additions & 2 deletions Rhinoceros_Engine/Compute/Geometry.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
*
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
Expand All @@ -22,7 +22,7 @@

using System;

namespace BH.Engine.Rhinoceros
namespace BH.Engine.Adapters.Rhinoceros
{
public static partial class Compute
{
Expand All @@ -30,14 +30,14 @@
/**** Public Methods ****/
/***************************************************/

public static object RandomGeometry(int seed = 0)

Check warning on line 33 in Rhinoceros_Engine/Compute/Geometry.cs

View check run for this annotation

BHoMBot-CI / beta-documentation-compliance

Rhinoceros_Engine/Compute/Geometry.cs#L33

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
return RandomGeometry(new Random(seed));
}

/***************************************************/

public static object RandomGeometry(Random random)

Check warning on line 40 in Rhinoceros_Engine/Compute/Geometry.cs

View check run for this annotation

BHoMBot-CI / beta-documentation-compliance

Rhinoceros_Engine/Compute/Geometry.cs#L40

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
int throwDice = random.Next(15);
switch (throwDice)
Expand Down Expand Up @@ -81,7 +81,7 @@

/***************************************************/

public static object RandomGeometry(Type type, Random random)

Check warning on line 84 in Rhinoceros_Engine/Compute/Geometry.cs

View check run for this annotation

BHoMBot-CI / beta-documentation-compliance

Rhinoceros_Engine/Compute/Geometry.cs#L84

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
switch(type.Name.ToLower())
{
Expand Down Expand Up @@ -134,3 +134,4 @@




5 changes: 3 additions & 2 deletions Rhinoceros_Engine/Convert/FromRhino.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
*
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
Expand All @@ -27,7 +27,7 @@
using BHG = BH.oM.Geometry;
using BH.Engine.Base;

namespace BH.Engine.Rhinoceros
namespace BH.Engine.Adapters.Rhinoceros
{
public static partial class Convert
{
Expand All @@ -35,21 +35,21 @@
/**** Public Methods - Interfaces ****/
/***************************************************/

public static BHG.IGeometry IFromRhino(this RHG.GeometryBase geometry)

Check warning on line 38 in Rhinoceros_Engine/Convert/FromRhino.cs

View check run for this annotation

BHoMBot-CI / beta-documentation-compliance

Rhinoceros_Engine/Convert/FromRhino.cs#L38

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
return (geometry == null) ? null : Convert.FromRhino(geometry as dynamic);
}

/***************************************************/

public static BHG.IGeometry IFromRhino<T>(this Rhino.IEpsilonComparable<T> geometry)

Check warning on line 45 in Rhinoceros_Engine/Convert/FromRhino.cs

View check run for this annotation

BHoMBot-CI / beta-documentation-compliance

Rhinoceros_Engine/Convert/FromRhino.cs#L45

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
return (geometry == null) ? null : Convert.FromRhino(geometry as dynamic);
}

/***************************************************/

public static BHG.IGeometry IFromRhino(this object geometry)

Check warning on line 52 in Rhinoceros_Engine/Convert/FromRhino.cs

View check run for this annotation

BHoMBot-CI / beta-documentation-compliance

Rhinoceros_Engine/Convert/FromRhino.cs#L52

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
return (geometry == null) ? null : Convert.FromRhino(geometry as dynamic);
}
Expand All @@ -59,21 +59,21 @@
/**** Public Methods - Vectors ****/
/***************************************************/

public static BHG.Point FromRhino(this RHG.Point3d rhinoPoint)

Check warning on line 62 in Rhinoceros_Engine/Convert/FromRhino.cs

View check run for this annotation

BHoMBot-CI / beta-documentation-compliance

Rhinoceros_Engine/Convert/FromRhino.cs#L62

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
return new BHG.Point { X = rhinoPoint.X, Y = rhinoPoint.Y, Z = rhinoPoint.Z };
}

/***************************************************/

public static BHG.Point FromRhino(this RHG.Point3f rhinoPoint)

Check warning on line 69 in Rhinoceros_Engine/Convert/FromRhino.cs

View check run for this annotation

BHoMBot-CI / beta-documentation-compliance

Rhinoceros_Engine/Convert/FromRhino.cs#L69

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
return new BHG.Point { X = rhinoPoint.X, Y = rhinoPoint.Y, Z = rhinoPoint.Z };
}

/***************************************************/

public static BHG.Point FromRhino(this RHG.Point rhinoPoint)

Check warning on line 76 in Rhinoceros_Engine/Convert/FromRhino.cs

View check run for this annotation

BHoMBot-CI / beta-documentation-compliance

Rhinoceros_Engine/Convert/FromRhino.cs#L76

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
if (rhinoPoint == null) return null;

Expand All @@ -82,42 +82,42 @@

/***************************************************/

public static BHG.Point FromRhino(this RHG.ControlPoint rhinoPoint)

Check warning on line 85 in Rhinoceros_Engine/Convert/FromRhino.cs

View check run for this annotation

BHoMBot-CI / beta-documentation-compliance

Rhinoceros_Engine/Convert/FromRhino.cs#L85

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
return new BHG.Point { X = rhinoPoint.Location.X, Y = rhinoPoint.Location.Y, Z = rhinoPoint.Location.Z };
}

/***************************************************/

public static BHG.Point FromRhino(this RHG.BrepVertex vertex)

Check warning on line 92 in Rhinoceros_Engine/Convert/FromRhino.cs

View check run for this annotation

BHoMBot-CI / beta-documentation-compliance

Rhinoceros_Engine/Convert/FromRhino.cs#L92

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
return new BHG.Point { X = vertex.Location.X, Y = vertex.Location.Y, Z = vertex.Location.Z };
}

/***************************************************/

public static BHG.Vector FromRhino(this RHG.Vector3d vector)

Check warning on line 99 in Rhinoceros_Engine/Convert/FromRhino.cs

View check run for this annotation

BHoMBot-CI / beta-documentation-compliance

Rhinoceros_Engine/Convert/FromRhino.cs#L99

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
return new BHG.Vector { X = vector.X, Y = vector.Y, Z = vector.Z };
}

/***************************************************/

public static BHG.Vector FromRhino(this RHG.Vector3f vector)

Check warning on line 106 in Rhinoceros_Engine/Convert/FromRhino.cs

View check run for this annotation

BHoMBot-CI / beta-documentation-compliance

Rhinoceros_Engine/Convert/FromRhino.cs#L106

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
return new BHG.Vector { X = vector.X, Y = vector.Y, Z = vector.Z };
}

/***************************************************/

public static BHG.CoordinateSystem.Cartesian FromRhino(this RHG.Plane plane)

Check warning on line 113 in Rhinoceros_Engine/Convert/FromRhino.cs

View check run for this annotation

BHoMBot-CI / beta-documentation-compliance

Rhinoceros_Engine/Convert/FromRhino.cs#L113

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
return Geometry.Create.CartesianCoordinateSystem(plane.Origin.FromRhino(), plane.XAxis.FromRhino(), plane.YAxis.FromRhino());
}

/***************************************************/

public static BHG.Quaternion FromRhino(this RHG.Quaternion quaternion)

Check warning on line 120 in Rhinoceros_Engine/Convert/FromRhino.cs

View check run for this annotation

BHoMBot-CI / beta-documentation-compliance

Rhinoceros_Engine/Convert/FromRhino.cs#L120

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
return new BHG.Quaternion
{
Expand All @@ -130,7 +130,7 @@

/***************************************************/

public static BHG.TransformMatrix FromRhino(this RHG.Transform rhTrans)

Check warning on line 133 in Rhinoceros_Engine/Convert/FromRhino.cs

View check run for this annotation

BHoMBot-CI / beta-documentation-compliance

Rhinoceros_Engine/Convert/FromRhino.cs#L133

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
BHG.TransformMatrix bhTrans = new BHG.TransformMatrix();
bhTrans.Matrix[0, 0] = rhTrans[0, 0];
Expand Down Expand Up @@ -161,7 +161,7 @@
/**** Public Methods - Curves ****/
/***************************************************/

public static BHG.Arc FromRhino(this RHG.Arc arc)

Check warning on line 164 in Rhinoceros_Engine/Convert/FromRhino.cs

View check run for this annotation

BHoMBot-CI / beta-documentation-compliance

Rhinoceros_Engine/Convert/FromRhino.cs#L164

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
BHG.CoordinateSystem.Cartesian system = arc.Plane.FromRhino();

Expand All @@ -170,7 +170,7 @@

/***************************************************/

public static BHG.ICurve FromRhino(this RHG.ArcCurve arcCurve)

Check warning on line 173 in Rhinoceros_Engine/Convert/FromRhino.cs

View check run for this annotation

BHoMBot-CI / beta-documentation-compliance

Rhinoceros_Engine/Convert/FromRhino.cs#L173

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
if (arcCurve == null) return null;

Expand All @@ -186,14 +186,14 @@

/***************************************************/

public static BHG.Circle FromRhino(this RHG.Circle circle)

Check warning on line 189 in Rhinoceros_Engine/Convert/FromRhino.cs

View check run for this annotation

BHoMBot-CI / beta-documentation-compliance

Rhinoceros_Engine/Convert/FromRhino.cs#L189

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
return new BHG.Circle { Centre = circle.Center.FromRhino(), Normal = circle.Normal.FromRhino(), Radius = circle.Radius };
}

/***************************************************/

public static BHG.Ellipse FromRhino(this RHG.Ellipse ellipse)

Check warning on line 196 in Rhinoceros_Engine/Convert/FromRhino.cs

View check run for this annotation

BHoMBot-CI / beta-documentation-compliance

Rhinoceros_Engine/Convert/FromRhino.cs#L196

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
return new BHG.Ellipse
{
Expand All @@ -207,14 +207,14 @@

/***************************************************/

public static BHG.Line FromRhino(this RHG.Line line)

Check warning on line 210 in Rhinoceros_Engine/Convert/FromRhino.cs

View check run for this annotation

BHoMBot-CI / beta-documentation-compliance

Rhinoceros_Engine/Convert/FromRhino.cs#L210

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
return new BHG.Line { Start = line.From.FromRhino(), End = line.To.FromRhino() };
}

/***************************************************/

public static BHG.Line FromRhino(this RHG.LineCurve line)

Check warning on line 217 in Rhinoceros_Engine/Convert/FromRhino.cs

View check run for this annotation

BHoMBot-CI / beta-documentation-compliance

Rhinoceros_Engine/Convert/FromRhino.cs#L217

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
if (line == null) return null;

Expand All @@ -223,7 +223,7 @@

/***************************************************/

public static BHG.ICurve FromRhino(this RHG.NurbsCurve rCurve)

Check warning on line 226 in Rhinoceros_Engine/Convert/FromRhino.cs

View check run for this annotation

BHoMBot-CI / beta-documentation-compliance

Rhinoceros_Engine/Convert/FromRhino.cs#L226

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
if (rCurve == null) return null;

Expand Down Expand Up @@ -253,7 +253,7 @@

/***************************************************/

public static BHG.ICurve FromRhino(this RHG.Curve rCurve)

Check warning on line 256 in Rhinoceros_Engine/Convert/FromRhino.cs

View check run for this annotation

BHoMBot-CI / beta-documentation-compliance

Rhinoceros_Engine/Convert/FromRhino.cs#L256

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
if (rCurve == null) return null;

Expand Down Expand Up @@ -302,7 +302,7 @@

/***************************************************/

public static BHG.ICurve FromRhino(this RHG.PolyCurve polyCurve)

Check warning on line 305 in Rhinoceros_Engine/Convert/FromRhino.cs

View check run for this annotation

BHoMBot-CI / beta-documentation-compliance

Rhinoceros_Engine/Convert/FromRhino.cs#L305

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
if (polyCurve == null) return null;

Expand All @@ -319,7 +319,7 @@

/***************************************************/

public static BHG.Polyline FromRhino(this RHG.Polyline polyline)

Check warning on line 322 in Rhinoceros_Engine/Convert/FromRhino.cs

View check run for this annotation

BHoMBot-CI / beta-documentation-compliance

Rhinoceros_Engine/Convert/FromRhino.cs#L322

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
if (polyline == null) return null;

Expand All @@ -328,7 +328,7 @@

/***************************************************/

public static BHG.Polyline FromRhino(this RHG.PolylineCurve polyline)

Check warning on line 331 in Rhinoceros_Engine/Convert/FromRhino.cs

View check run for this annotation

BHoMBot-CI / beta-documentation-compliance

Rhinoceros_Engine/Convert/FromRhino.cs#L331

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
if (polyline == null) return null;

Expand All @@ -349,21 +349,21 @@
/**** Public Methods - Surfaces ****/
/***************************************************/

public static BHG.BoundingBox FromRhino(this RHG.BoundingBox boundingBox)

Check warning on line 352 in Rhinoceros_Engine/Convert/FromRhino.cs

View check run for this annotation

BHoMBot-CI / beta-documentation-compliance

Rhinoceros_Engine/Convert/FromRhino.cs#L352

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
return new BHG.BoundingBox { Min = boundingBox.Min.FromRhino(), Max = boundingBox.Max.FromRhino() };
}

/***************************************************/

public static BHG.BoundingBox FromRhino(this RHG.Box box)

Check warning on line 359 in Rhinoceros_Engine/Convert/FromRhino.cs

View check run for this annotation

BHoMBot-CI / beta-documentation-compliance

Rhinoceros_Engine/Convert/FromRhino.cs#L359

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
return box.BoundingBox.FromRhino();
}

/***************************************************/

public static BHG.ISurface FromRhino(this RHG.Surface surface)

Check warning on line 366 in Rhinoceros_Engine/Convert/FromRhino.cs

View check run for this annotation

BHoMBot-CI / beta-documentation-compliance

Rhinoceros_Engine/Convert/FromRhino.cs#L366

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
if (surface == null)
return null;
Expand All @@ -379,7 +379,7 @@

/***************************************************/

public static BHG.ISurface FromRhino(this RHG.NurbsSurface surface)

Check warning on line 382 in Rhinoceros_Engine/Convert/FromRhino.cs

View check run for this annotation

BHoMBot-CI / beta-documentation-compliance

Rhinoceros_Engine/Convert/FromRhino.cs#L382

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
if (surface == null)
return null;
Expand Down Expand Up @@ -407,7 +407,7 @@

/***************************************************/

public static BHG.IGeometry FromRhino(this RHG.Brep brep)

Check warning on line 410 in Rhinoceros_Engine/Convert/FromRhino.cs

View check run for this annotation

BHoMBot-CI / beta-documentation-compliance

Rhinoceros_Engine/Convert/FromRhino.cs#L410

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
if (brep == null)
return null;
Expand Down Expand Up @@ -441,7 +441,7 @@

/***************************************************/

public static BHG.ISurface FromRhino(this RHG.BrepFace face)

Check warning on line 444 in Rhinoceros_Engine/Convert/FromRhino.cs

View check run for this annotation

BHoMBot-CI / beta-documentation-compliance

Rhinoceros_Engine/Convert/FromRhino.cs#L444

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
if (face == null)
return null;
Expand All @@ -454,7 +454,7 @@

/***************************************************/

public static BHG.IGeometry FromRhino(this RHG.Extrusion extrusion)

Check warning on line 457 in Rhinoceros_Engine/Convert/FromRhino.cs

View check run for this annotation

BHoMBot-CI / beta-documentation-compliance

Rhinoceros_Engine/Convert/FromRhino.cs#L457

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
if (extrusion == null) return null;

Expand Down Expand Up @@ -490,7 +490,7 @@
/**** Public Methods - Mesh ****/
/***************************************************/

public static BHG.Mesh FromRhino(this RHG.Mesh rMesh)

Check warning on line 493 in Rhinoceros_Engine/Convert/FromRhino.cs

View check run for this annotation

BHoMBot-CI / beta-documentation-compliance

Rhinoceros_Engine/Convert/FromRhino.cs#L493

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
if (rMesh == null) return null;

Expand All @@ -513,7 +513,7 @@

/***************************************************/

public static BHG.Face FromRhino(this RHG.MeshFace rFace)

Check warning on line 516 in Rhinoceros_Engine/Convert/FromRhino.cs

View check run for this annotation

BHoMBot-CI / beta-documentation-compliance

Rhinoceros_Engine/Convert/FromRhino.cs#L516

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{

BHG.Face face = new BHG.Face
Expand All @@ -533,28 +533,28 @@
/**** Public Methods - Solids ****/
/***************************************************/

public static BHG.Sphere FromRhino(this RHG.Sphere sphere)

Check warning on line 536 in Rhinoceros_Engine/Convert/FromRhino.cs

View check run for this annotation

BHoMBot-CI / beta-documentation-compliance

Rhinoceros_Engine/Convert/FromRhino.cs#L536

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
return new BHG.Sphere { Centre = sphere.Center.FromRhino(), Radius = sphere.Radius };
}

/***************************************************/

public static BHG.Torus FromRhino(this RHG.Torus torus)

Check warning on line 543 in Rhinoceros_Engine/Convert/FromRhino.cs

View check run for this annotation

BHoMBot-CI / beta-documentation-compliance

Rhinoceros_Engine/Convert/FromRhino.cs#L543

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
return new BHG.Torus { Centre = torus.Plane.Origin.FromRhino(), Axis = torus.Plane.ZAxis.FromRhino(), RadiusMajor = torus.MajorRadius, RadiusMinor = torus.MinorRadius };
}

/***************************************************/

public static BHG.Cone FromRhino(this RHG.Cone cone)

Check warning on line 550 in Rhinoceros_Engine/Convert/FromRhino.cs

View check run for this annotation

BHoMBot-CI / beta-documentation-compliance

Rhinoceros_Engine/Convert/FromRhino.cs#L550

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
return new BHG.Cone { Centre = cone.BasePoint.FromRhino(), Axis = cone.Axis.FromRhino() * -1.0, Radius = cone.Radius, Height = cone.Height };
}

/***************************************************/

public static BHG.Cylinder FromRhino(this RHG.Cylinder cylinder)

Check warning on line 557 in Rhinoceros_Engine/Convert/FromRhino.cs

View check run for this annotation

BHoMBot-CI / beta-documentation-compliance

Rhinoceros_Engine/Convert/FromRhino.cs#L557

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
BHG.Point centre = cylinder.Center.FromRhino() + cylinder.Axis.FromRhino() * cylinder.Height1;
return new BHG.Cylinder { Centre = centre, Axis = cylinder.Axis.FromRhino(), Height = cylinder.TotalHeight, Radius = cylinder.CircleAt(0.0).Radius };
Expand All @@ -565,14 +565,14 @@
/**** Miscellanea ****/
/***************************************************/

public static BHG.CompositeGeometry FromRhino(this List<RHG.GeometryBase> geometries)

Check warning on line 568 in Rhinoceros_Engine/Convert/FromRhino.cs

View check run for this annotation

BHoMBot-CI / beta-documentation-compliance

Rhinoceros_Engine/Convert/FromRhino.cs#L568

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
return new BHG.CompositeGeometry { Elements = geometries.Select(x => x.IFromRhino()).ToList() };
}

/***************************************************/

public static BHG.SurfaceTrim FromRhino(this RHG.BrepLoop loop)

Check warning on line 575 in Rhinoceros_Engine/Convert/FromRhino.cs

View check run for this annotation

BHoMBot-CI / beta-documentation-compliance

Rhinoceros_Engine/Convert/FromRhino.cs#L575

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
BHG.PolyCurve curve2d = new BHG.PolyCurve();
BHG.PolyCurve curve3d = new BHG.PolyCurve();
Expand Down Expand Up @@ -694,7 +694,7 @@
/**** Fallback Methods ****/
/***************************************************/

public static BHG.IGeometry FromRhino(this object obj)

Check warning on line 697 in Rhinoceros_Engine/Convert/FromRhino.cs

View check run for this annotation

BHoMBot-CI / beta-documentation-compliance

Rhinoceros_Engine/Convert/FromRhino.cs#L697

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
BHG.IGeometry geom = obj as BHG.IGeometry;

Expand All @@ -713,3 +713,4 @@




5 changes: 3 additions & 2 deletions Rhinoceros_Engine/Convert/ToRhino.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
*
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
Expand Down Expand Up @@ -33,7 +33,7 @@
using BH.oM.Graphics;
using System.ComponentModel;

namespace BH.Engine.Rhinoceros
namespace BH.Engine.Adapters.Rhinoceros
{
public static partial class Convert
{
Expand Down Expand Up @@ -1029,3 +1029,4 @@ private static object ToRhino(this IObject obj)




5 changes: 3 additions & 2 deletions Rhinoceros_Engine/Convert/ToRhino5.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
*
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
Expand All @@ -25,11 +25,11 @@
using BHG = BH.oM.Geometry;
using BH.Engine.Geometry;

namespace BH.Engine.Rhinoceros
namespace BH.Engine.Adapters.Rhinoceros
{
public static partial class Convert
{
public static RHG.NurbsCurve ToRhino5(this BHG.NurbsCurve bCurve)

Check warning on line 32 in Rhinoceros_Engine/Convert/ToRhino5.cs

View check run for this annotation

BHoMBot-CI / beta-documentation-compliance

Rhinoceros_Engine/Convert/ToRhino5.cs#L32

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
if (bCurve == null) return null;

Expand All @@ -54,3 +54,4 @@
}



5 changes: 3 additions & 2 deletions Rhinoceros_Engine/Create/Arc.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
*
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
Expand All @@ -27,7 +27,7 @@
using System.Text;
using System.Threading.Tasks;

namespace BH.Engine.Rhinoceros
namespace BH.Engine.Adapters.Rhinoceros
{
public static partial class Create
{
Expand All @@ -35,14 +35,14 @@
/**** Public Methods ****/
/***************************************************/

public static Arc RandomArc(Random random)

Check warning on line 38 in Rhinoceros_Engine/Create/Arc.cs

View check run for this annotation

BHoMBot-CI / beta-documentation-compliance

Rhinoceros_Engine/Create/Arc.cs#L38

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
return new Arc(RandomPoint3d(random), random.NextDouble(), random.NextDouble());
}

/***************************************************/

public static Arc RandomArc(int seed = 0)

Check warning on line 45 in Rhinoceros_Engine/Create/Arc.cs

View check run for this annotation

BHoMBot-CI / beta-documentation-compliance

Rhinoceros_Engine/Create/Arc.cs#L45

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
return RandomArc(new Random(seed));
}
Expand All @@ -54,3 +54,4 @@




5 changes: 3 additions & 2 deletions Rhinoceros_Engine/Create/ArcCurve.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
*
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
Expand All @@ -27,7 +27,7 @@
using System.Text;
using System.Threading.Tasks;

namespace BH.Engine.Rhinoceros
namespace BH.Engine.Adapters.Rhinoceros
{
public static partial class Create
{
Expand All @@ -35,7 +35,7 @@
/**** Public Methods ****/
/***************************************************/

public static ArcCurve RandomArcCurve(Random random)

Check warning on line 38 in Rhinoceros_Engine/Create/ArcCurve.cs

View check run for this annotation

BHoMBot-CI / beta-documentation-compliance

Rhinoceros_Engine/Create/ArcCurve.cs#L38

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
return new ArcCurve(RandomArc(random));
}
Expand All @@ -54,3 +54,4 @@




5 changes: 3 additions & 2 deletions Rhinoceros_Engine/Create/Circle.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
*
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
Expand All @@ -27,7 +27,7 @@
using System.Text;
using System.Threading.Tasks;

namespace BH.Engine.Rhinoceros
namespace BH.Engine.Adapters.Rhinoceros
{
public static partial class Create
{
Expand All @@ -54,3 +54,4 @@ public static Circle RandomCircle(int seed = 0)




5 changes: 3 additions & 2 deletions Rhinoceros_Engine/Create/ControlPoint.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
*
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
Expand All @@ -23,7 +23,7 @@
using Rhino.Geometry;
using System;

namespace BH.Engine.Rhinoceros
namespace BH.Engine.Adapters.Rhinoceros
{
public static partial class Create
{
Expand All @@ -50,3 +50,4 @@ public static ControlPoint RandomControlPoint(int seed = 0)




5 changes: 3 additions & 2 deletions Rhinoceros_Engine/Create/Curve.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
*
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
Expand All @@ -24,7 +24,7 @@
using System;
using System.Collections.Generic;

namespace BH.Engine.Rhinoceros
namespace BH.Engine.Adapters.Rhinoceros
{
public static partial class Create
{
Expand Down Expand Up @@ -58,3 +58,4 @@ public static List<Curve> RandomCurves(int seed = 0)




5 changes: 3 additions & 2 deletions Rhinoceros_Engine/Create/Line.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
*
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
Expand All @@ -23,7 +23,7 @@
using Rhino.Geometry;
using System;

namespace BH.Engine.Rhinoceros
namespace BH.Engine.Adapters.Rhinoceros
{
public static partial class Create
{
Expand All @@ -50,3 +50,4 @@ public static Line RandomLine(int seed = 0)




5 changes: 3 additions & 2 deletions Rhinoceros_Engine/Create/LineCurve.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
*
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
Expand All @@ -23,7 +23,7 @@
using Rhino.Geometry;
using System;

namespace BH.Engine.Rhinoceros
namespace BH.Engine.Adapters.Rhinoceros
{
public static partial class Create
{
Expand All @@ -50,3 +50,4 @@ public static LineCurve RandomLineCurve(int seed = 0)




5 changes: 3 additions & 2 deletions Rhinoceros_Engine/Create/NurbsCurve.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
*
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
Expand All @@ -24,7 +24,7 @@
using System;
using System.Collections.Generic;

namespace BH.Engine.Rhinoceros
namespace BH.Engine.Adapters.Rhinoceros
{
public static partial class Create
{
Expand Down Expand Up @@ -52,3 +52,4 @@ public static NurbsCurve RandomNurbsCurve(int seed = 0)




5 changes: 3 additions & 2 deletions Rhinoceros_Engine/Create/Point3d.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
*
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
Expand All @@ -24,7 +24,7 @@
using System;
using System.Collections.Generic;

namespace BH.Engine.Rhinoceros
namespace BH.Engine.Adapters.Rhinoceros
{
public static partial class Create
{
Expand Down Expand Up @@ -68,3 +68,4 @@ public static List<Point3d> RandomPoint3dList(int seed = 0)




5 changes: 3 additions & 2 deletions Rhinoceros_Engine/Create/Point3f.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
*
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
Expand All @@ -23,7 +23,7 @@
using Rhino.Geometry;
using System;

namespace BH.Engine.Rhinoceros
namespace BH.Engine.Adapters.Rhinoceros
{
public static partial class Create
{
Expand Down Expand Up @@ -51,3 +51,4 @@ public static Point3f RandomPoint3f(int seed = 0)




Loading
Loading