├── .ci ├── CloneTest.ps1 ├── check-all-depandants.yml ├── check-core.yml ├── check-installer.yml ├── run-compliance-tests.yml └── testSettings.runsettings ├── .github ├── ISSUE_TEMPLATE │ ├── 00_bug.md │ ├── 01_feature_request.md │ ├── 02_test_script.md │ ├── 03_documentation.md │ ├── 04_compliance.md │ ├── 05_external_api_changes.md │ └── 06_question.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── GHManipulator_Alligator ├── AssemblyInfo.cs ├── Create │ ├── ComponentsFromObjectList.cs │ ├── DuplicateComponent.cs │ ├── LinksBetweenGroups.cs │ └── PanelFromList.cs ├── GHManipulator_Alligator.csproj ├── app.config └── packages.config ├── Grasshopper_Engine ├── Convert │ ├── ToNode.cs │ ├── ToNodeGroup.cs │ ├── ToNodeParam.cs │ ├── ToRhino.cs │ └── ToType.cs ├── Create │ └── DataTree.cs ├── Grasshopper_Engine.csproj ├── Query │ ├── CanvasFilePath.cs │ └── CanvasID.cs └── app.config ├── Grasshopper_UI.sln ├── Grasshopper_UI ├── CallerComponent │ ├── GH_Component.cs │ ├── IGH_InitCodeAware.cs │ ├── IGH_VariableParameterComponent.cs │ ├── OnGHParamChanged.cs │ └── OncallerModified.cs ├── Components │ ├── Adapter │ │ ├── CreateAdapter.cs │ │ ├── CreateRequest.cs │ │ ├── Execute.cs │ │ ├── Move.cs │ │ ├── Pull.cs │ │ ├── Push.cs │ │ └── Remove.cs │ ├── Engine │ │ ├── Compute.cs │ │ ├── Convert.cs │ │ ├── Explode.cs │ │ ├── External.cs │ │ ├── FromJson.cs │ │ ├── GetEvents.cs │ │ ├── GetInfo.cs │ │ ├── GetProperty.cs │ │ ├── Modify.cs │ │ ├── Query.cs │ │ ├── SetProperty.cs │ │ └── ToJson.cs │ ├── Parameters │ │ ├── Param_BHoMAdapter.cs │ │ ├── Param_BHoMGeometry.cs │ │ ├── Param_BHoMObject.cs │ │ ├── Param_Dictionary.cs │ │ ├── Param_Enum.cs │ │ ├── Param_IObject.cs │ │ ├── Param_Type.cs │ │ └── Param_Variable.cs │ ├── UI │ │ ├── Cluster2Node.cs │ │ ├── FalseStartToggle.cs │ │ ├── Settings.cs │ │ └── UnitTest.cs │ └── oM │ │ ├── CreateCustom.cs │ │ ├── CreateData.cs │ │ ├── CreateDictionary.cs │ │ ├── CreateEnum.cs │ │ ├── CreateObject.cs │ │ └── CreateType.cs ├── CustomAttributes │ ├── FalseStartToggleAttributes.cs │ ├── PrototypeAttribute.cs │ └── PrototypeValueListAttribute.cs ├── Global │ ├── GlobalSearch.cs │ └── WireInfo.cs ├── Goos │ ├── GH_BHoMAdapter.cs │ ├── GH_BHoMGoo.cs │ ├── GH_BHoMObject.cs │ ├── GH_BakeableObject.cs │ ├── GH_Dictionary.cs │ ├── GH_Enum.cs │ ├── GH_IBHoMGeometry.cs │ ├── GH_IObject.cs │ ├── GH_Type.cs │ └── GH_Variable.cs ├── Grasshopper_UI.csproj ├── Helpers │ ├── AvailableHints.cs │ ├── CastToGoo.cs │ ├── FromGoo.cs │ ├── Logging.cs │ ├── ToGH_Param.cs │ ├── ToGoo.cs │ └── Type.cs ├── Hints │ ├── BHomObjectHint.cs │ ├── DictionaryHint.cs │ ├── EnumHint.cs │ ├── IGeometryHint.cs │ └── TypeHint.cs ├── Properties │ ├── Resources.Designer.cs │ ├── Resources.resx │ └── Resources │ │ ├── Adapter.png │ │ ├── BHoMAdapter_Param.png │ │ ├── BHoMObject_Param.png │ │ ├── BHoM_App_Clean.png │ │ ├── BHoM_App_Close.png │ │ ├── BHoM_App_Run.png │ │ ├── BHoM_App_Save.png │ │ ├── BHoM_BHoM_Object.png │ │ ├── BHoM_Create_CustomData.png │ │ ├── BHoM_Filter.png │ │ ├── BHoM_FromJSON.png │ │ ├── BHoM_GetProperty.png │ │ ├── BHoM_GetPropertyNames.png │ │ ├── BHoM_Grasshopper_Icon.png │ │ ├── BHoM_Logo.png │ │ ├── BHoM_Material.png │ │ ├── BHoM_Read _CustomData.png │ │ ├── BHoM_Run_Analasis.png │ │ ├── BHoM_SetProperty.png │ │ ├── BHoM_ToJSON.png │ │ ├── BS_Script.png │ │ ├── ClusterToNode.png │ │ ├── Compute.png │ │ ├── Convert.png │ │ ├── CreateBHoM.png │ │ ├── CustomObject.png │ │ ├── DOF.png │ │ ├── Data.png │ │ ├── Delete.png │ │ ├── Dictionary.png │ │ ├── Dictionary_Param.png │ │ ├── Enum.png │ │ ├── Enum_Param.png │ │ ├── Execute.png │ │ ├── Explode.png │ │ ├── FromJson.png │ │ ├── IBHoMGeometry_Param.png │ │ ├── IObject_Param.png │ │ ├── ItemAccess.png │ │ ├── ListAccess.png │ │ ├── Modify.png │ │ ├── Move.png │ │ ├── Pull.png │ │ ├── Push.png │ │ ├── Query.png │ │ ├── QueryAdapter.png │ │ ├── ToJson.png │ │ ├── TreeAccess.png │ │ ├── Type.png │ │ ├── Type_Param.png │ │ ├── UISettings.png │ │ ├── UpdateProperty.png │ │ ├── VBH_Script.png │ │ ├── VS_Script.png │ │ ├── Variable_Param.png │ │ ├── bar.png │ │ ├── gator.png │ │ ├── node.png │ │ └── skeleton.png ├── Render │ ├── CreatePreviewMesh.cs │ ├── RenderColour.cs │ ├── RenderMaterial.cs │ ├── RenderMeshes.cs │ ├── RenderPrototypeLabel.cs │ ├── RenderRhinoMeshes.cs │ ├── RenderRhinoWires.cs │ └── RenderWires.cs └── Templates │ ├── BHoMParam.cs │ ├── BakeableParam.cs │ ├── CallerValueList.cs │ ├── DataAccessor_GH.cs │ └── IBHoMParam.cs ├── Grasshopper_oM ├── Grasshopper_oM.csproj └── UISettings.cs ├── LICENSE ├── README.md ├── core.txt ├── dependants.txt ├── dependencies.txt └── lib ├── Interop.Gsa_8_7.dll └── Script.dll /.ci/CloneTest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/.ci/CloneTest.ps1 -------------------------------------------------------------------------------- /.ci/check-all-depandants.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/.ci/check-all-depandants.yml -------------------------------------------------------------------------------- /.ci/check-core.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/.ci/check-core.yml -------------------------------------------------------------------------------- /.ci/check-installer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/.ci/check-installer.yml -------------------------------------------------------------------------------- /.ci/run-compliance-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/.ci/run-compliance-tests.yml -------------------------------------------------------------------------------- /.ci/testSettings.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/.ci/testSettings.runsettings -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/00_bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/.github/ISSUE_TEMPLATE/00_bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/01_feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/.github/ISSUE_TEMPLATE/01_feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/02_test_script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/.github/ISSUE_TEMPLATE/02_test_script.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/03_documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/.github/ISSUE_TEMPLATE/03_documentation.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/04_compliance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/.github/ISSUE_TEMPLATE/04_compliance.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/05_external_api_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/.github/ISSUE_TEMPLATE/05_external_api_changes.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/06_question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/.github/ISSUE_TEMPLATE/06_question.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/.gitignore -------------------------------------------------------------------------------- /GHManipulator_Alligator/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/GHManipulator_Alligator/AssemblyInfo.cs -------------------------------------------------------------------------------- /GHManipulator_Alligator/Create/ComponentsFromObjectList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/GHManipulator_Alligator/Create/ComponentsFromObjectList.cs -------------------------------------------------------------------------------- /GHManipulator_Alligator/Create/DuplicateComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/GHManipulator_Alligator/Create/DuplicateComponent.cs -------------------------------------------------------------------------------- /GHManipulator_Alligator/Create/LinksBetweenGroups.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/GHManipulator_Alligator/Create/LinksBetweenGroups.cs -------------------------------------------------------------------------------- /GHManipulator_Alligator/Create/PanelFromList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/GHManipulator_Alligator/Create/PanelFromList.cs -------------------------------------------------------------------------------- /GHManipulator_Alligator/GHManipulator_Alligator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/GHManipulator_Alligator/GHManipulator_Alligator.csproj -------------------------------------------------------------------------------- /GHManipulator_Alligator/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/GHManipulator_Alligator/app.config -------------------------------------------------------------------------------- /GHManipulator_Alligator/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/GHManipulator_Alligator/packages.config -------------------------------------------------------------------------------- /Grasshopper_Engine/Convert/ToNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_Engine/Convert/ToNode.cs -------------------------------------------------------------------------------- /Grasshopper_Engine/Convert/ToNodeGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_Engine/Convert/ToNodeGroup.cs -------------------------------------------------------------------------------- /Grasshopper_Engine/Convert/ToNodeParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_Engine/Convert/ToNodeParam.cs -------------------------------------------------------------------------------- /Grasshopper_Engine/Convert/ToRhino.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_Engine/Convert/ToRhino.cs -------------------------------------------------------------------------------- /Grasshopper_Engine/Convert/ToType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_Engine/Convert/ToType.cs -------------------------------------------------------------------------------- /Grasshopper_Engine/Create/DataTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_Engine/Create/DataTree.cs -------------------------------------------------------------------------------- /Grasshopper_Engine/Grasshopper_Engine.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_Engine/Grasshopper_Engine.csproj -------------------------------------------------------------------------------- /Grasshopper_Engine/Query/CanvasFilePath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_Engine/Query/CanvasFilePath.cs -------------------------------------------------------------------------------- /Grasshopper_Engine/Query/CanvasID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_Engine/Query/CanvasID.cs -------------------------------------------------------------------------------- /Grasshopper_Engine/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_Engine/app.config -------------------------------------------------------------------------------- /Grasshopper_UI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI.sln -------------------------------------------------------------------------------- /Grasshopper_UI/CallerComponent/GH_Component.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/CallerComponent/GH_Component.cs -------------------------------------------------------------------------------- /Grasshopper_UI/CallerComponent/IGH_InitCodeAware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/CallerComponent/IGH_InitCodeAware.cs -------------------------------------------------------------------------------- /Grasshopper_UI/CallerComponent/IGH_VariableParameterComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/CallerComponent/IGH_VariableParameterComponent.cs -------------------------------------------------------------------------------- /Grasshopper_UI/CallerComponent/OnGHParamChanged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/CallerComponent/OnGHParamChanged.cs -------------------------------------------------------------------------------- /Grasshopper_UI/CallerComponent/OncallerModified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/CallerComponent/OncallerModified.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Components/Adapter/CreateAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Components/Adapter/CreateAdapter.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Components/Adapter/CreateRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Components/Adapter/CreateRequest.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Components/Adapter/Execute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Components/Adapter/Execute.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Components/Adapter/Move.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Components/Adapter/Move.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Components/Adapter/Pull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Components/Adapter/Pull.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Components/Adapter/Push.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Components/Adapter/Push.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Components/Adapter/Remove.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Components/Adapter/Remove.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Components/Engine/Compute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Components/Engine/Compute.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Components/Engine/Convert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Components/Engine/Convert.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Components/Engine/Explode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Components/Engine/Explode.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Components/Engine/External.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Components/Engine/External.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Components/Engine/FromJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Components/Engine/FromJson.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Components/Engine/GetEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Components/Engine/GetEvents.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Components/Engine/GetInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Components/Engine/GetInfo.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Components/Engine/GetProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Components/Engine/GetProperty.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Components/Engine/Modify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Components/Engine/Modify.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Components/Engine/Query.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Components/Engine/Query.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Components/Engine/SetProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Components/Engine/SetProperty.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Components/Engine/ToJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Components/Engine/ToJson.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Components/Parameters/Param_BHoMAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Components/Parameters/Param_BHoMAdapter.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Components/Parameters/Param_BHoMGeometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Components/Parameters/Param_BHoMGeometry.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Components/Parameters/Param_BHoMObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Components/Parameters/Param_BHoMObject.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Components/Parameters/Param_Dictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Components/Parameters/Param_Dictionary.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Components/Parameters/Param_Enum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Components/Parameters/Param_Enum.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Components/Parameters/Param_IObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Components/Parameters/Param_IObject.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Components/Parameters/Param_Type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Components/Parameters/Param_Type.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Components/Parameters/Param_Variable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Components/Parameters/Param_Variable.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Components/UI/Cluster2Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Components/UI/Cluster2Node.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Components/UI/FalseStartToggle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Components/UI/FalseStartToggle.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Components/UI/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Components/UI/Settings.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Components/UI/UnitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Components/UI/UnitTest.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Components/oM/CreateCustom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Components/oM/CreateCustom.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Components/oM/CreateData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Components/oM/CreateData.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Components/oM/CreateDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Components/oM/CreateDictionary.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Components/oM/CreateEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Components/oM/CreateEnum.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Components/oM/CreateObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Components/oM/CreateObject.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Components/oM/CreateType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Components/oM/CreateType.cs -------------------------------------------------------------------------------- /Grasshopper_UI/CustomAttributes/FalseStartToggleAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/CustomAttributes/FalseStartToggleAttributes.cs -------------------------------------------------------------------------------- /Grasshopper_UI/CustomAttributes/PrototypeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/CustomAttributes/PrototypeAttribute.cs -------------------------------------------------------------------------------- /Grasshopper_UI/CustomAttributes/PrototypeValueListAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/CustomAttributes/PrototypeValueListAttribute.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Global/GlobalSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Global/GlobalSearch.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Global/WireInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Global/WireInfo.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Goos/GH_BHoMAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Goos/GH_BHoMAdapter.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Goos/GH_BHoMGoo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Goos/GH_BHoMGoo.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Goos/GH_BHoMObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Goos/GH_BHoMObject.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Goos/GH_BakeableObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Goos/GH_BakeableObject.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Goos/GH_Dictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Goos/GH_Dictionary.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Goos/GH_Enum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Goos/GH_Enum.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Goos/GH_IBHoMGeometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Goos/GH_IBHoMGeometry.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Goos/GH_IObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Goos/GH_IObject.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Goos/GH_Type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Goos/GH_Type.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Goos/GH_Variable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Goos/GH_Variable.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Grasshopper_UI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Grasshopper_UI.csproj -------------------------------------------------------------------------------- /Grasshopper_UI/Helpers/AvailableHints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Helpers/AvailableHints.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Helpers/CastToGoo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Helpers/CastToGoo.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Helpers/FromGoo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Helpers/FromGoo.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Helpers/Logging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Helpers/Logging.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Helpers/ToGH_Param.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Helpers/ToGH_Param.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Helpers/ToGoo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Helpers/ToGoo.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Helpers/Type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Helpers/Type.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Hints/BHomObjectHint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Hints/BHomObjectHint.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Hints/DictionaryHint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Hints/DictionaryHint.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Hints/EnumHint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Hints/EnumHint.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Hints/IGeometryHint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Hints/IGeometryHint.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Hints/TypeHint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Hints/TypeHint.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources.resx -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/Adapter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/Adapter.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/BHoMAdapter_Param.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/BHoMAdapter_Param.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/BHoMObject_Param.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/BHoMObject_Param.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/BHoM_App_Clean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/BHoM_App_Clean.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/BHoM_App_Close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/BHoM_App_Close.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/BHoM_App_Run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/BHoM_App_Run.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/BHoM_App_Save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/BHoM_App_Save.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/BHoM_BHoM_Object.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/BHoM_BHoM_Object.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/BHoM_Create_CustomData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/BHoM_Create_CustomData.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/BHoM_Filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/BHoM_Filter.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/BHoM_FromJSON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/BHoM_FromJSON.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/BHoM_GetProperty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/BHoM_GetProperty.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/BHoM_GetPropertyNames.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/BHoM_GetPropertyNames.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/BHoM_Grasshopper_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/BHoM_Grasshopper_Icon.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/BHoM_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/BHoM_Logo.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/BHoM_Material.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/BHoM_Material.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/BHoM_Read _CustomData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/BHoM_Read _CustomData.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/BHoM_Run_Analasis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/BHoM_Run_Analasis.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/BHoM_SetProperty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/BHoM_SetProperty.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/BHoM_ToJSON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/BHoM_ToJSON.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/BS_Script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/BS_Script.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/ClusterToNode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/ClusterToNode.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/Compute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/Compute.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/Convert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/Convert.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/CreateBHoM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/CreateBHoM.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/CustomObject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/CustomObject.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/DOF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/DOF.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/Data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/Data.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/Delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/Delete.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/Dictionary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/Dictionary.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/Dictionary_Param.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/Dictionary_Param.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/Enum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/Enum.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/Enum_Param.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/Enum_Param.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/Execute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/Execute.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/Explode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/Explode.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/FromJson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/FromJson.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/IBHoMGeometry_Param.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/IBHoMGeometry_Param.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/IObject_Param.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/IObject_Param.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/ItemAccess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/ItemAccess.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/ListAccess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/ListAccess.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/Modify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/Modify.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/Move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/Move.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/Pull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/Pull.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/Push.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/Push.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/Query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/Query.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/QueryAdapter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/QueryAdapter.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/ToJson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/ToJson.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/TreeAccess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/TreeAccess.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/Type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/Type.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/Type_Param.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/Type_Param.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/UISettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/UISettings.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/UpdateProperty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/UpdateProperty.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/VBH_Script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/VBH_Script.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/VS_Script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/VS_Script.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/Variable_Param.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/Variable_Param.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/bar.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/gator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/gator.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/node.png -------------------------------------------------------------------------------- /Grasshopper_UI/Properties/Resources/skeleton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Properties/Resources/skeleton.png -------------------------------------------------------------------------------- /Grasshopper_UI/Render/CreatePreviewMesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Render/CreatePreviewMesh.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Render/RenderColour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Render/RenderColour.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Render/RenderMaterial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Render/RenderMaterial.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Render/RenderMeshes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Render/RenderMeshes.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Render/RenderPrototypeLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Render/RenderPrototypeLabel.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Render/RenderRhinoMeshes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Render/RenderRhinoMeshes.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Render/RenderRhinoWires.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Render/RenderRhinoWires.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Render/RenderWires.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Render/RenderWires.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Templates/BHoMParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Templates/BHoMParam.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Templates/BakeableParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Templates/BakeableParam.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Templates/CallerValueList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Templates/CallerValueList.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Templates/DataAccessor_GH.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Templates/DataAccessor_GH.cs -------------------------------------------------------------------------------- /Grasshopper_UI/Templates/IBHoMParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_UI/Templates/IBHoMParam.cs -------------------------------------------------------------------------------- /Grasshopper_oM/Grasshopper_oM.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_oM/Grasshopper_oM.csproj -------------------------------------------------------------------------------- /Grasshopper_oM/UISettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/Grasshopper_oM/UISettings.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/README.md -------------------------------------------------------------------------------- /core.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dependants.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/dependencies.txt -------------------------------------------------------------------------------- /lib/Interop.Gsa_8_7.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/lib/Interop.Gsa_8_7.dll -------------------------------------------------------------------------------- /lib/Script.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BHoM/Grasshopper_UI/HEAD/lib/Script.dll --------------------------------------------------------------------------------