Grasshopper Development Tool: ArchiToolkit.Grasshopper

Hi, I created a new development tool called ArchiToolkit.Grasshopper which is the next version of the SimpleGrasshopper. You can use it in nuget.
This was created to make your grasshopper development easier.

Core Concept

The component is a method, however the parameter is a class or a struct.
So we can make a method to be a component and a class or a struct to be a parameter.

And also, it can auto generate the resx files for localizaion and the icons for you to replace.

Examples

The easiest example of it.

public class Test
{
    [DocObj]
    public static int Add(int x, int y) => x + y;
}

More Informations

This tool is under the license LGPL
And the source code is in Github.

I hope it can bring you guys some new ideas! Piece.

4 Likes