├── .github └── workflows │ ├── workflow_ci.yml │ └── workflow_release.yml ├── .gitignore ├── LICENSE ├── README.md └── samples ├── part1 ├── MakeRandomPointsAndClustering_rhinocommon.py ├── MakeRandomPointsAndClustering_rhinoscriptsyntax.py ├── MakeRandomPoints_rhinocommon.py ├── MakeRandomPoints_rhinoscripsyntax.py ├── MyAmazingLibrary │ ├── AmazingWall.cs │ ├── MyAmazingLibrary.csproj │ └── MyAmazingLibrary.sln ├── MyTemplate.cs ├── TestingComponents.ghx ├── TestingDebug.cs ├── TestingDebug.py ├── TestingDebug.py2 ├── TestingDebugGH.ghx ├── TestingNuGet_RestSharp.cs ├── TestingPip_Numpy.py └── TestingReferences.cs ├── part2 ├── BatchPrinting_Command.cs ├── BatchPrinting_Component.gh └── files │ ├── NewText.txt │ ├── file01.3dm │ ├── file02.3dm │ ├── file03.3dm │ ├── file04.3dm │ └── script.py └── part3 ├── MyAmazingLibrary ├── AmazingWall.cs ├── MyAmazingLibrary.csproj └── MyAmazingLibrary.sln ├── TestingReferences.cs ├── icons ├── heroicons-outline--code.svg └── heroicons-outline--collection.svg └── project ├── BatchPrinting_Command.cs ├── BatchPrinting_Component.gh ├── BatchPrinting_Context_Component.ghx ├── build └── rh8 │ ├── aectech_plugin-0.3.17658.8875-rh8-any.yak │ ├── aectech_plugin.gha │ ├── aectech_plugin.rhp │ ├── aectech_plugin.rui │ └── src │ ├── aectech_plugin.GH │ ├── AssemblyInfo.cs │ ├── ProjectComponent.cs │ ├── ProjectPlugin_Grasshopper.cs │ └── aectech_plugin.GH.csproj │ ├── aectech_plugin.sln │ └── aectech_plugin │ ├── AssemblyInfo.cs │ ├── ProjectCommand_BatchPrinting_Command.cs │ ├── ProjectCommand_BatchPrinting_Context.cs │ ├── ProjectPlugin.cs │ └── aectech_plugin.csproj └── project.rhproj /.github/workflows/workflow_ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/aectech_2024_scripteditor/HEAD/.github/workflows/workflow_ci.yml -------------------------------------------------------------------------------- /.github/workflows/workflow_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/aectech_2024_scripteditor/HEAD/.github/workflows/workflow_release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/aectech_2024_scripteditor/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/aectech_2024_scripteditor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/aectech_2024_scripteditor/HEAD/README.md -------------------------------------------------------------------------------- /samples/part1/MakeRandomPointsAndClustering_rhinocommon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/aectech_2024_scripteditor/HEAD/samples/part1/MakeRandomPointsAndClustering_rhinocommon.py -------------------------------------------------------------------------------- /samples/part1/MakeRandomPointsAndClustering_rhinoscriptsyntax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/aectech_2024_scripteditor/HEAD/samples/part1/MakeRandomPointsAndClustering_rhinoscriptsyntax.py -------------------------------------------------------------------------------- /samples/part1/MakeRandomPoints_rhinocommon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/aectech_2024_scripteditor/HEAD/samples/part1/MakeRandomPoints_rhinocommon.py -------------------------------------------------------------------------------- /samples/part1/MakeRandomPoints_rhinoscripsyntax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/aectech_2024_scripteditor/HEAD/samples/part1/MakeRandomPoints_rhinoscripsyntax.py -------------------------------------------------------------------------------- /samples/part1/MyAmazingLibrary/AmazingWall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/aectech_2024_scripteditor/HEAD/samples/part1/MyAmazingLibrary/AmazingWall.cs -------------------------------------------------------------------------------- /samples/part1/MyAmazingLibrary/MyAmazingLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/aectech_2024_scripteditor/HEAD/samples/part1/MyAmazingLibrary/MyAmazingLibrary.csproj -------------------------------------------------------------------------------- /samples/part1/MyAmazingLibrary/MyAmazingLibrary.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/aectech_2024_scripteditor/HEAD/samples/part1/MyAmazingLibrary/MyAmazingLibrary.sln -------------------------------------------------------------------------------- /samples/part1/MyTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/aectech_2024_scripteditor/HEAD/samples/part1/MyTemplate.cs -------------------------------------------------------------------------------- /samples/part1/TestingComponents.ghx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/aectech_2024_scripteditor/HEAD/samples/part1/TestingComponents.ghx -------------------------------------------------------------------------------- /samples/part1/TestingDebug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/aectech_2024_scripteditor/HEAD/samples/part1/TestingDebug.cs -------------------------------------------------------------------------------- /samples/part1/TestingDebug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/aectech_2024_scripteditor/HEAD/samples/part1/TestingDebug.py -------------------------------------------------------------------------------- /samples/part1/TestingDebug.py2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/aectech_2024_scripteditor/HEAD/samples/part1/TestingDebug.py2 -------------------------------------------------------------------------------- /samples/part1/TestingDebugGH.ghx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/aectech_2024_scripteditor/HEAD/samples/part1/TestingDebugGH.ghx -------------------------------------------------------------------------------- /samples/part1/TestingNuGet_RestSharp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/aectech_2024_scripteditor/HEAD/samples/part1/TestingNuGet_RestSharp.cs -------------------------------------------------------------------------------- /samples/part1/TestingPip_Numpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/aectech_2024_scripteditor/HEAD/samples/part1/TestingPip_Numpy.py -------------------------------------------------------------------------------- /samples/part1/TestingReferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/aectech_2024_scripteditor/HEAD/samples/part1/TestingReferences.cs -------------------------------------------------------------------------------- /samples/part2/BatchPrinting_Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/aectech_2024_scripteditor/HEAD/samples/part2/BatchPrinting_Command.cs -------------------------------------------------------------------------------- /samples/part2/BatchPrinting_Component.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/aectech_2024_scripteditor/HEAD/samples/part2/BatchPrinting_Component.gh -------------------------------------------------------------------------------- /samples/part2/files/NewText.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/part2/files/file01.3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/aectech_2024_scripteditor/HEAD/samples/part2/files/file01.3dm -------------------------------------------------------------------------------- /samples/part2/files/file02.3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/aectech_2024_scripteditor/HEAD/samples/part2/files/file02.3dm -------------------------------------------------------------------------------- /samples/part2/files/file03.3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/aectech_2024_scripteditor/HEAD/samples/part2/files/file03.3dm -------------------------------------------------------------------------------- /samples/part2/files/file04.3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/aectech_2024_scripteditor/HEAD/samples/part2/files/file04.3dm -------------------------------------------------------------------------------- /samples/part2/files/script.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/part3/MyAmazingLibrary/AmazingWall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/aectech_2024_scripteditor/HEAD/samples/part3/MyAmazingLibrary/AmazingWall.cs -------------------------------------------------------------------------------- /samples/part3/MyAmazingLibrary/MyAmazingLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/aectech_2024_scripteditor/HEAD/samples/part3/MyAmazingLibrary/MyAmazingLibrary.csproj -------------------------------------------------------------------------------- /samples/part3/MyAmazingLibrary/MyAmazingLibrary.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/aectech_2024_scripteditor/HEAD/samples/part3/MyAmazingLibrary/MyAmazingLibrary.sln -------------------------------------------------------------------------------- /samples/part3/TestingReferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/aectech_2024_scripteditor/HEAD/samples/part3/TestingReferences.cs -------------------------------------------------------------------------------- /samples/part3/icons/heroicons-outline--code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/aectech_2024_scripteditor/HEAD/samples/part3/icons/heroicons-outline--code.svg -------------------------------------------------------------------------------- /samples/part3/icons/heroicons-outline--collection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/aectech_2024_scripteditor/HEAD/samples/part3/icons/heroicons-outline--collection.svg -------------------------------------------------------------------------------- /samples/part3/project/BatchPrinting_Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/aectech_2024_scripteditor/HEAD/samples/part3/project/BatchPrinting_Command.cs -------------------------------------------------------------------------------- /samples/part3/project/BatchPrinting_Component.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/aectech_2024_scripteditor/HEAD/samples/part3/project/BatchPrinting_Component.gh -------------------------------------------------------------------------------- /samples/part3/project/BatchPrinting_Context_Component.ghx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/aectech_2024_scripteditor/HEAD/samples/part3/project/BatchPrinting_Context_Component.ghx -------------------------------------------------------------------------------- /samples/part3/project/build/rh8/aectech_plugin-0.3.17658.8875-rh8-any.yak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/aectech_2024_scripteditor/HEAD/samples/part3/project/build/rh8/aectech_plugin-0.3.17658.8875-rh8-any.yak -------------------------------------------------------------------------------- /samples/part3/project/build/rh8/aectech_plugin.gha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/aectech_2024_scripteditor/HEAD/samples/part3/project/build/rh8/aectech_plugin.gha -------------------------------------------------------------------------------- /samples/part3/project/build/rh8/aectech_plugin.rhp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/aectech_2024_scripteditor/HEAD/samples/part3/project/build/rh8/aectech_plugin.rhp -------------------------------------------------------------------------------- /samples/part3/project/build/rh8/aectech_plugin.rui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/aectech_2024_scripteditor/HEAD/samples/part3/project/build/rh8/aectech_plugin.rui -------------------------------------------------------------------------------- /samples/part3/project/build/rh8/src/aectech_plugin.GH/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/aectech_2024_scripteditor/HEAD/samples/part3/project/build/rh8/src/aectech_plugin.GH/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/part3/project/build/rh8/src/aectech_plugin.GH/ProjectComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/aectech_2024_scripteditor/HEAD/samples/part3/project/build/rh8/src/aectech_plugin.GH/ProjectComponent.cs -------------------------------------------------------------------------------- /samples/part3/project/build/rh8/src/aectech_plugin.GH/ProjectPlugin_Grasshopper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/aectech_2024_scripteditor/HEAD/samples/part3/project/build/rh8/src/aectech_plugin.GH/ProjectPlugin_Grasshopper.cs -------------------------------------------------------------------------------- /samples/part3/project/build/rh8/src/aectech_plugin.GH/aectech_plugin.GH.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/aectech_2024_scripteditor/HEAD/samples/part3/project/build/rh8/src/aectech_plugin.GH/aectech_plugin.GH.csproj -------------------------------------------------------------------------------- /samples/part3/project/build/rh8/src/aectech_plugin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/aectech_2024_scripteditor/HEAD/samples/part3/project/build/rh8/src/aectech_plugin.sln -------------------------------------------------------------------------------- /samples/part3/project/build/rh8/src/aectech_plugin/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/aectech_2024_scripteditor/HEAD/samples/part3/project/build/rh8/src/aectech_plugin/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/part3/project/build/rh8/src/aectech_plugin/ProjectCommand_BatchPrinting_Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/aectech_2024_scripteditor/HEAD/samples/part3/project/build/rh8/src/aectech_plugin/ProjectCommand_BatchPrinting_Command.cs -------------------------------------------------------------------------------- /samples/part3/project/build/rh8/src/aectech_plugin/ProjectCommand_BatchPrinting_Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/aectech_2024_scripteditor/HEAD/samples/part3/project/build/rh8/src/aectech_plugin/ProjectCommand_BatchPrinting_Context.cs -------------------------------------------------------------------------------- /samples/part3/project/build/rh8/src/aectech_plugin/ProjectPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/aectech_2024_scripteditor/HEAD/samples/part3/project/build/rh8/src/aectech_plugin/ProjectPlugin.cs -------------------------------------------------------------------------------- /samples/part3/project/build/rh8/src/aectech_plugin/aectech_plugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/aectech_2024_scripteditor/HEAD/samples/part3/project/build/rh8/src/aectech_plugin/aectech_plugin.csproj -------------------------------------------------------------------------------- /samples/part3/project/project.rhproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcneel/aectech_2024_scripteditor/HEAD/samples/part3/project/project.rhproj --------------------------------------------------------------------------------