Skip to content

Commit 283c2e7

Browse files
author
Fraser Greenroyd
authored
7.1 Deployment (#250)
2 parents 80c890d + f6ed6ff commit 283c2e7

37 files changed

+139
-86
lines changed

CONTRIBUTING.md

Lines changed: 0 additions & 2 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Grab the [latest installer](https://bhom.xyz/) and a selection of [sample script
2424
## Getting Started for Developers 🤖
2525

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

2929

3030
## Want to Contribute? ##

Rhinoceros_Engine/Compute/CaptureNamedViews.cs

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
/*
1+
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -30,10 +30,10 @@
3030
using Rhino;
3131
using Rhino.Display;
3232
using System.Drawing;
33-
using BH.oM.Rhinoceros.ViewCapture;
33+
using BH.oM.Adapters.Rhinoceros.ViewCapture;
3434
using System.Drawing.Imaging;
3535

36-
namespace BH.Engine.Rhinoceros
36+
namespace BH.Engine.Adapters.Rhinoceros
3737
{
3838
public static partial class Compute
3939
{
@@ -100,3 +100,4 @@ public static bool CaptureNamedViews(bool active = false, string folderPath = ""
100100
/***************************************************/
101101
}
102102
}
103+

Rhinoceros_Engine/Compute/CaptureView.cs

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
/*
1+
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -30,10 +30,10 @@
3030
using Rhino;
3131
using Rhino.Display;
3232
using System.Drawing;
33-
using BH.oM.Rhinoceros.ViewCapture;
33+
using BH.oM.Adapters.Rhinoceros.ViewCapture;
3434
using System.Drawing.Imaging;
3535

36-
namespace BH.Engine.Rhinoceros
36+
namespace BH.Engine.Adapters.Rhinoceros
3737
{
3838
public static partial class Compute
3939
{
@@ -216,3 +216,4 @@ private static ViewCapture ViewCapture(this DimensionViewCaptureSettings setting
216216
/***************************************************/
217217
}
218218
}
219+

Rhinoceros_Engine/Compute/CollectAllModelData.cs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
/*
1+
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -31,7 +31,7 @@
3131
using System.Drawing;
3232
using Rhino.Geometry;
3333

34-
namespace BH.Engine.Rhinoceros
34+
namespace BH.Engine.Adapters.Rhinoceros
3535
{
3636
public static partial class Compute
3737
{
@@ -81,3 +81,4 @@ public static Output<List<string>, List<Color>, List<GeometryBase>> CollectAllMo
8181
/***************************************************/
8282
}
8383
}
84+

Rhinoceros_Engine/Compute/Geometry.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -22,7 +22,7 @@
2222

2323
using System;
2424

25-
namespace BH.Engine.Rhinoceros
25+
namespace BH.Engine.Adapters.Rhinoceros
2626
{
2727
public static partial class Compute
2828
{
@@ -134,3 +134,4 @@ public static object RandomGeometry(Type type, Random random)
134134

135135

136136

137+

Rhinoceros_Engine/Convert/FromRhino.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -27,7 +27,7 @@
2727
using BHG = BH.oM.Geometry;
2828
using BH.Engine.Base;
2929

30-
namespace BH.Engine.Rhinoceros
30+
namespace BH.Engine.Adapters.Rhinoceros
3131
{
3232
public static partial class Convert
3333
{
@@ -713,3 +713,4 @@ public static BHG.IGeometry FromRhino(this object obj)
713713

714714

715715

716+

Rhinoceros_Engine/Convert/ToRhino.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -33,7 +33,7 @@
3333
using BH.oM.Graphics;
3434
using System.ComponentModel;
3535

36-
namespace BH.Engine.Rhinoceros
36+
namespace BH.Engine.Adapters.Rhinoceros
3737
{
3838
public static partial class Convert
3939
{
@@ -1029,3 +1029,4 @@ private static object ToRhino(this IObject obj)
10291029

10301030

10311031

1032+

Rhinoceros_Engine/Convert/ToRhino5.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -25,7 +25,7 @@
2525
using BHG = BH.oM.Geometry;
2626
using BH.Engine.Geometry;
2727

28-
namespace BH.Engine.Rhinoceros
28+
namespace BH.Engine.Adapters.Rhinoceros
2929
{
3030
public static partial class Convert
3131
{
@@ -54,3 +54,4 @@ public static RHG.NurbsCurve ToRhino5(this BHG.NurbsCurve bCurve)
5454
}
5555

5656

57+

Rhinoceros_Engine/Create/Arc.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -27,7 +27,7 @@
2727
using System.Text;
2828
using System.Threading.Tasks;
2929

30-
namespace BH.Engine.Rhinoceros
30+
namespace BH.Engine.Adapters.Rhinoceros
3131
{
3232
public static partial class Create
3333
{
@@ -54,3 +54,4 @@ public static Arc RandomArc(int seed = 0)
5454

5555

5656

57+

0 commit comments

Comments
 (0)