├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTION.md ├── D2PComponentsCSharp.sln ├── D2PModellingGuideline.md ├── D2P_Core ├── Component.cs ├── ComponentMember.cs ├── ComponentType.cs ├── D2P_Core.csproj ├── FilterOptions.cs ├── Interfaces │ ├── IComponent.cs │ ├── IComponentType.cs │ └── ILayerInfo.cs ├── LayerInfo.cs ├── Settings.cs └── Utility │ ├── Group.cs │ ├── IO.cs │ ├── Instantiation.cs │ ├── Layers.cs │ ├── Objects.cs │ └── RHDoc.cs ├── D2P_GrasshopperTools ├── .vscode │ ├── launch.json │ └── tasks.json ├── Assets │ ├── GH_BakeComponents.png │ ├── GH_CreateBBox.png │ ├── GH_CreateComponent.png │ ├── GH_CreateComponentObjects.png │ ├── GH_CreateComponentType.png │ ├── GH_CreateJoint.png │ ├── GH_CreateLayerObject.png │ ├── GH_CreateSettings.png │ ├── GH_DeconstructComponent.png │ ├── GH_DeconstructComponentType.png │ ├── GH_ExplodeComponentStream.png │ ├── GH_ExportComponent.png │ ├── GH_GetComponentIndex.png │ ├── GH_ObjectAttributes.png │ ├── GH_RegisterComponentObjects.png │ ├── GH_RetrieveChildren.png │ ├── GH_RetrieveComponentObjects.png │ ├── GH_RetrieveConnectedComponents.png │ ├── GH_RetrieveJoints.png │ ├── GH_RetrieveParent.png │ ├── GH_Stream.png │ ├── GH_StreamComponentTypes.png │ ├── GH_StreamGate.png │ ├── GH_Transform.png │ ├── GH_TypeStream.png │ └── Logo.png ├── D2PGrasshopperToolsInfo.cs ├── D2P_GrasshopperTools.csproj ├── GH │ ├── Create │ │ ├── GHCreateBBox.cs │ │ ├── GHCreateComponent.cs │ │ ├── GHCreateComponentLayerInfo.cs │ │ ├── GHCreateComponentMember.cs │ │ ├── GHCreateComponentType.cs │ │ ├── GHCreateJoint.cs │ │ ├── GHCreateObjectAttributes.cs │ │ └── GHCreateSettings.cs │ ├── EtoDefaultSettingsPanel.cs │ ├── GHComponentBase.cs │ ├── GHComponentPreview.cs │ ├── GHVariableParameterComponent.cs │ ├── Modify │ │ ├── GHRegisterComponentMembers.cs │ │ └── GHTransform.cs │ ├── Retrieve │ │ ├── GHGetComponentIndex.cs │ │ ├── GHRetrieveChildren.cs │ │ ├── GHRetrieveConnectedComponents.cs │ │ ├── GHRetrieveGeometry.cs │ │ ├── GHRetrieveJoints.cs │ │ └── GHRetrieveParent.cs │ ├── Stream │ │ ├── GHComponentGate.cs │ │ ├── GHStreamComponentTypes.cs │ │ ├── GHStreamComponents.cs │ │ ├── GHStreamComponentsByType.cs │ │ └── GHStreamComponentsGate.cs │ └── Utility │ │ ├── GHBakeComponents.cs │ │ ├── GHDeconstructComponent.cs │ │ ├── GHDeconstructComponentType.cs │ │ └── GHExportComponents.cs ├── Properties │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ ├── Settings.settings │ └── launchSettings.json ├── Utility │ └── DefaultSettings.cs └── manifest.yml ├── LICENSE.md ├── Media └── Images │ └── Logo1024x256.svg └── README.md /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/CONTRIBUTION.md -------------------------------------------------------------------------------- /D2PComponentsCSharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2PComponentsCSharp.sln -------------------------------------------------------------------------------- /D2PModellingGuideline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2PModellingGuideline.md -------------------------------------------------------------------------------- /D2P_Core/Component.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_Core/Component.cs -------------------------------------------------------------------------------- /D2P_Core/ComponentMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_Core/ComponentMember.cs -------------------------------------------------------------------------------- /D2P_Core/ComponentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_Core/ComponentType.cs -------------------------------------------------------------------------------- /D2P_Core/D2P_Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_Core/D2P_Core.csproj -------------------------------------------------------------------------------- /D2P_Core/FilterOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_Core/FilterOptions.cs -------------------------------------------------------------------------------- /D2P_Core/Interfaces/IComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_Core/Interfaces/IComponent.cs -------------------------------------------------------------------------------- /D2P_Core/Interfaces/IComponentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_Core/Interfaces/IComponentType.cs -------------------------------------------------------------------------------- /D2P_Core/Interfaces/ILayerInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_Core/Interfaces/ILayerInfo.cs -------------------------------------------------------------------------------- /D2P_Core/LayerInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_Core/LayerInfo.cs -------------------------------------------------------------------------------- /D2P_Core/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_Core/Settings.cs -------------------------------------------------------------------------------- /D2P_Core/Utility/Group.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_Core/Utility/Group.cs -------------------------------------------------------------------------------- /D2P_Core/Utility/IO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_Core/Utility/IO.cs -------------------------------------------------------------------------------- /D2P_Core/Utility/Instantiation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_Core/Utility/Instantiation.cs -------------------------------------------------------------------------------- /D2P_Core/Utility/Layers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_Core/Utility/Layers.cs -------------------------------------------------------------------------------- /D2P_Core/Utility/Objects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_Core/Utility/Objects.cs -------------------------------------------------------------------------------- /D2P_Core/Utility/RHDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_Core/Utility/RHDoc.cs -------------------------------------------------------------------------------- /D2P_GrasshopperTools/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/.vscode/launch.json -------------------------------------------------------------------------------- /D2P_GrasshopperTools/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/.vscode/tasks.json -------------------------------------------------------------------------------- /D2P_GrasshopperTools/Assets/GH_BakeComponents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/Assets/GH_BakeComponents.png -------------------------------------------------------------------------------- /D2P_GrasshopperTools/Assets/GH_CreateBBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/Assets/GH_CreateBBox.png -------------------------------------------------------------------------------- /D2P_GrasshopperTools/Assets/GH_CreateComponent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/Assets/GH_CreateComponent.png -------------------------------------------------------------------------------- /D2P_GrasshopperTools/Assets/GH_CreateComponentObjects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/Assets/GH_CreateComponentObjects.png -------------------------------------------------------------------------------- /D2P_GrasshopperTools/Assets/GH_CreateComponentType.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/Assets/GH_CreateComponentType.png -------------------------------------------------------------------------------- /D2P_GrasshopperTools/Assets/GH_CreateJoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/Assets/GH_CreateJoint.png -------------------------------------------------------------------------------- /D2P_GrasshopperTools/Assets/GH_CreateLayerObject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/Assets/GH_CreateLayerObject.png -------------------------------------------------------------------------------- /D2P_GrasshopperTools/Assets/GH_CreateSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/Assets/GH_CreateSettings.png -------------------------------------------------------------------------------- /D2P_GrasshopperTools/Assets/GH_DeconstructComponent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/Assets/GH_DeconstructComponent.png -------------------------------------------------------------------------------- /D2P_GrasshopperTools/Assets/GH_DeconstructComponentType.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/Assets/GH_DeconstructComponentType.png -------------------------------------------------------------------------------- /D2P_GrasshopperTools/Assets/GH_ExplodeComponentStream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/Assets/GH_ExplodeComponentStream.png -------------------------------------------------------------------------------- /D2P_GrasshopperTools/Assets/GH_ExportComponent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/Assets/GH_ExportComponent.png -------------------------------------------------------------------------------- /D2P_GrasshopperTools/Assets/GH_GetComponentIndex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/Assets/GH_GetComponentIndex.png -------------------------------------------------------------------------------- /D2P_GrasshopperTools/Assets/GH_ObjectAttributes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/Assets/GH_ObjectAttributes.png -------------------------------------------------------------------------------- /D2P_GrasshopperTools/Assets/GH_RegisterComponentObjects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/Assets/GH_RegisterComponentObjects.png -------------------------------------------------------------------------------- /D2P_GrasshopperTools/Assets/GH_RetrieveChildren.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/Assets/GH_RetrieveChildren.png -------------------------------------------------------------------------------- /D2P_GrasshopperTools/Assets/GH_RetrieveComponentObjects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/Assets/GH_RetrieveComponentObjects.png -------------------------------------------------------------------------------- /D2P_GrasshopperTools/Assets/GH_RetrieveConnectedComponents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/Assets/GH_RetrieveConnectedComponents.png -------------------------------------------------------------------------------- /D2P_GrasshopperTools/Assets/GH_RetrieveJoints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/Assets/GH_RetrieveJoints.png -------------------------------------------------------------------------------- /D2P_GrasshopperTools/Assets/GH_RetrieveParent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/Assets/GH_RetrieveParent.png -------------------------------------------------------------------------------- /D2P_GrasshopperTools/Assets/GH_Stream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/Assets/GH_Stream.png -------------------------------------------------------------------------------- /D2P_GrasshopperTools/Assets/GH_StreamComponentTypes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/Assets/GH_StreamComponentTypes.png -------------------------------------------------------------------------------- /D2P_GrasshopperTools/Assets/GH_StreamGate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/Assets/GH_StreamGate.png -------------------------------------------------------------------------------- /D2P_GrasshopperTools/Assets/GH_Transform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/Assets/GH_Transform.png -------------------------------------------------------------------------------- /D2P_GrasshopperTools/Assets/GH_TypeStream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/Assets/GH_TypeStream.png -------------------------------------------------------------------------------- /D2P_GrasshopperTools/Assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/Assets/Logo.png -------------------------------------------------------------------------------- /D2P_GrasshopperTools/D2PGrasshopperToolsInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/D2PGrasshopperToolsInfo.cs -------------------------------------------------------------------------------- /D2P_GrasshopperTools/D2P_GrasshopperTools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/D2P_GrasshopperTools.csproj -------------------------------------------------------------------------------- /D2P_GrasshopperTools/GH/Create/GHCreateBBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/GH/Create/GHCreateBBox.cs -------------------------------------------------------------------------------- /D2P_GrasshopperTools/GH/Create/GHCreateComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/GH/Create/GHCreateComponent.cs -------------------------------------------------------------------------------- /D2P_GrasshopperTools/GH/Create/GHCreateComponentLayerInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/GH/Create/GHCreateComponentLayerInfo.cs -------------------------------------------------------------------------------- /D2P_GrasshopperTools/GH/Create/GHCreateComponentMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/GH/Create/GHCreateComponentMember.cs -------------------------------------------------------------------------------- /D2P_GrasshopperTools/GH/Create/GHCreateComponentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/GH/Create/GHCreateComponentType.cs -------------------------------------------------------------------------------- /D2P_GrasshopperTools/GH/Create/GHCreateJoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/GH/Create/GHCreateJoint.cs -------------------------------------------------------------------------------- /D2P_GrasshopperTools/GH/Create/GHCreateObjectAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/GH/Create/GHCreateObjectAttributes.cs -------------------------------------------------------------------------------- /D2P_GrasshopperTools/GH/Create/GHCreateSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/GH/Create/GHCreateSettings.cs -------------------------------------------------------------------------------- /D2P_GrasshopperTools/GH/EtoDefaultSettingsPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/GH/EtoDefaultSettingsPanel.cs -------------------------------------------------------------------------------- /D2P_GrasshopperTools/GH/GHComponentBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/GH/GHComponentBase.cs -------------------------------------------------------------------------------- /D2P_GrasshopperTools/GH/GHComponentPreview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/GH/GHComponentPreview.cs -------------------------------------------------------------------------------- /D2P_GrasshopperTools/GH/GHVariableParameterComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/GH/GHVariableParameterComponent.cs -------------------------------------------------------------------------------- /D2P_GrasshopperTools/GH/Modify/GHRegisterComponentMembers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/GH/Modify/GHRegisterComponentMembers.cs -------------------------------------------------------------------------------- /D2P_GrasshopperTools/GH/Modify/GHTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/GH/Modify/GHTransform.cs -------------------------------------------------------------------------------- /D2P_GrasshopperTools/GH/Retrieve/GHGetComponentIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/GH/Retrieve/GHGetComponentIndex.cs -------------------------------------------------------------------------------- /D2P_GrasshopperTools/GH/Retrieve/GHRetrieveChildren.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/GH/Retrieve/GHRetrieveChildren.cs -------------------------------------------------------------------------------- /D2P_GrasshopperTools/GH/Retrieve/GHRetrieveConnectedComponents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/GH/Retrieve/GHRetrieveConnectedComponents.cs -------------------------------------------------------------------------------- /D2P_GrasshopperTools/GH/Retrieve/GHRetrieveGeometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/GH/Retrieve/GHRetrieveGeometry.cs -------------------------------------------------------------------------------- /D2P_GrasshopperTools/GH/Retrieve/GHRetrieveJoints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/GH/Retrieve/GHRetrieveJoints.cs -------------------------------------------------------------------------------- /D2P_GrasshopperTools/GH/Retrieve/GHRetrieveParent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/GH/Retrieve/GHRetrieveParent.cs -------------------------------------------------------------------------------- /D2P_GrasshopperTools/GH/Stream/GHComponentGate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/GH/Stream/GHComponentGate.cs -------------------------------------------------------------------------------- /D2P_GrasshopperTools/GH/Stream/GHStreamComponentTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/GH/Stream/GHStreamComponentTypes.cs -------------------------------------------------------------------------------- /D2P_GrasshopperTools/GH/Stream/GHStreamComponents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/GH/Stream/GHStreamComponents.cs -------------------------------------------------------------------------------- /D2P_GrasshopperTools/GH/Stream/GHStreamComponentsByType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/GH/Stream/GHStreamComponentsByType.cs -------------------------------------------------------------------------------- /D2P_GrasshopperTools/GH/Stream/GHStreamComponentsGate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/GH/Stream/GHStreamComponentsGate.cs -------------------------------------------------------------------------------- /D2P_GrasshopperTools/GH/Utility/GHBakeComponents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/GH/Utility/GHBakeComponents.cs -------------------------------------------------------------------------------- /D2P_GrasshopperTools/GH/Utility/GHDeconstructComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/GH/Utility/GHDeconstructComponent.cs -------------------------------------------------------------------------------- /D2P_GrasshopperTools/GH/Utility/GHDeconstructComponentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/GH/Utility/GHDeconstructComponentType.cs -------------------------------------------------------------------------------- /D2P_GrasshopperTools/GH/Utility/GHExportComponents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/GH/Utility/GHExportComponents.cs -------------------------------------------------------------------------------- /D2P_GrasshopperTools/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /D2P_GrasshopperTools/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/Properties/Resources.resx -------------------------------------------------------------------------------- /D2P_GrasshopperTools/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /D2P_GrasshopperTools/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/Properties/Settings.settings -------------------------------------------------------------------------------- /D2P_GrasshopperTools/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/Properties/launchSettings.json -------------------------------------------------------------------------------- /D2P_GrasshopperTools/Utility/DefaultSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/Utility/DefaultSettings.cs -------------------------------------------------------------------------------- /D2P_GrasshopperTools/manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/D2P_GrasshopperTools/manifest.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Media/Images/Logo1024x256.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/Media/Images/Logo1024x256.svg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/design-to-production/D2P-Components/HEAD/README.md --------------------------------------------------------------------------------