Skip to content

Commit

Permalink
7.1 Deployment (#250)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fraser Greenroyd authored Mar 27, 2024
2 parents 80c890d + f6ed6ff commit 283c2e7
Show file tree
Hide file tree
Showing 37 changed files with 139 additions and 86 deletions.
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 @@ -216,3 +216,4 @@ private static ViewCapture ViewCapture(this DimensionViewCaptureSettings setting
/***************************************************/
}
}

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 Down Expand Up @@ -134,3 +134,4 @@ public static object RandomGeometry(Type type, Random random)




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 Down Expand Up @@ -713,3 +713,4 @@ public static BHG.IGeometry FromRhino(this object obj)




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,7 +25,7 @@
using BHG = BH.oM.Geometry;
using BH.Engine.Geometry;

namespace BH.Engine.Rhinoceros
namespace BH.Engine.Adapters.Rhinoceros
{
public static partial class Convert
{
Expand Down Expand Up @@ -54,3 +54,4 @@ public static RHG.NurbsCurve ToRhino5(this BHG.NurbsCurve bCurve)
}



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 @@ -54,3 +54,4 @@ public static Arc RandomArc(int seed = 0)




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 @@ -54,3 +54,4 @@ public static ArcCurve RandomArcCurve(int seed = 0)




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

0 comments on commit 283c2e7

Please sign in to comment.