Skip to content

Commit 132f813

Browse files
committed
init
0 parents  commit 132f813

File tree

5 files changed

+93
-0
lines changed

5 files changed

+93
-0
lines changed

.editorconfig

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 4
6+
charset = utf-8
7+
trim_trailing_whitespace = false
8+
insert_final_newline = false
9+
10+
[*.py]
11+
insert_final_newline = true

.gitattributes

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# .gitattributes
2+
3+
* text=auto
4+
*.gh binary
5+
*.ghx diff=xml

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# .gitignore
2+
3+
*.lnk
4+
*.url

LICENSE.md

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# Blue Oak Model License
2+
3+
Version 1.0.0
4+
5+
## Purpose
6+
7+
This license gives everyone as much permission to work with
8+
this software as possible, while protecting contributors
9+
from liability.
10+
11+
## Acceptance
12+
13+
In order to receive this license, you must agree to its
14+
rules. The rules of this license are both obligations
15+
under that agreement and conditions to your license.
16+
You must not do anything with this software that triggers
17+
a rule that you cannot or will not follow.
18+
19+
## Copyright
20+
21+
Each contributor licenses you to do everything with this
22+
software that would otherwise infringe that contributor's
23+
copyright in it.
24+
25+
## Notices
26+
27+
You must ensure that everyone who gets a copy of
28+
any part of this software from you, with or without
29+
changes, also gets the text of this license or a link to
30+
<https://blueoakcouncil.org/license/1.0.0>.
31+
32+
## Excuse
33+
34+
If anyone notifies you in writing that you have not
35+
complied with [Notices](#notices), you can keep your
36+
license by taking all practical steps to comply within 30
37+
days after the notice. If you do not do so, your license
38+
ends immediately.
39+
40+
## Patent
41+
42+
Each contributor licenses you to do everything with this
43+
software that would otherwise infringe any patent claims
44+
they can license or become able to license.
45+
46+
## Reliability
47+
48+
No contributor can revoke this license.
49+
50+
## No Liability
51+
52+
***As far as the law allows, this software comes as is,
53+
without any warranty or condition, and no contributor
54+
will be liable to anyone for any damages related to this
55+
software or this license, under any kind of legal claim.***

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Grasshopper examples 🦗
2+
3+
![Rhino Version](https://img.shields.io/badge/Rhino-6-801010?logo=Rhinoceros) ![Grasshopper Version](https://img.shields.io/badge/Grasshopper-1-71C53D?logo=Rhinoceros)
4+
5+
> Some Grasshopper example files to show neat ways of working, tips & tricks.
6+
7+
8+
### Scripting
9+
A big feature of Grasshopper is the ability to actually _script_ inside a scripting node. You can do so in VB.net, C#, and most importantly Python. Latter being also the probably easiest choice. It is encouraged to write in your IDE of choice, with the help of [IronPython stubs](https://github.com/gtalarico/ironpython-stubs).
10+
11+
12+
## Other stuff
13+
14+
Check out the [secrets of Rhino + Grasshopper](https://runxel.xyz/rhino-secrets/).
15+
Have a look at my [Rhino scripts](https://github.com/runxel/rhino-scripts)!
16+
17+
## License
18+
[Blue Oak Model License (BOML)](/LICENSE.md)

0 commit comments

Comments
 (0)