-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🔥 [Nodes] Remove the notion of template node
- Loading branch information
1 parent
e7eb113
commit 45a2100
Showing
26 changed files
with
20 additions
and
230 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// To learn how to write nodes, see https://coollab-art.com/Tutorials/Writing%20Nodes/Intro | ||
|
||
Any main(Any x) | ||
float main(float x) | ||
{ | ||
return abs(x); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// To learn how to write nodes, see https://coollab-art.com/Tutorials/Writing%20Nodes/Intro | ||
|
||
Any main(Any value) | ||
float main(float value) | ||
{ | ||
return cos(value); | ||
return cos(value); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// To learn how to write nodes, see https://coollab-art.com/Tutorials/Writing%20Nodes/Intro | ||
|
||
Any main(Any value) | ||
float main(float value) | ||
{ | ||
return exp(value); | ||
return exp(value); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// To learn how to write nodes, see https://coollab-art.com/Tutorials/Writing%20Nodes/Intro | ||
|
||
Any main(Any value) | ||
float main(float value) | ||
{ | ||
return log(value); | ||
return log(value); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// To learn how to write nodes, see https://coollab-art.com/Tutorials/Writing%20Nodes/Intro | ||
|
||
Any main(Any value1, Any value2) | ||
float main(float value1, float value2) | ||
{ | ||
return max(value1, value2); | ||
return max(value1, value2); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// To learn how to write nodes, see https://coollab-art.com/Tutorials/Writing%20Nodes/Intro | ||
|
||
Any main(Any value1, Any value2) | ||
float main(float value1, float value2) | ||
{ | ||
return min(value1, value2); | ||
return min(value1, value2); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
// To learn how to write nodes, see https://coollab-art.com/Tutorials/Writing%20Nodes/Intro | ||
INPUT float 'Power'; | ||
|
||
Any main(Any value) | ||
float main(float value) | ||
{ | ||
return pow(value, 'Power'); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// To learn how to write nodes, see https://coollab-art.com/Tutorials/Writing%20Nodes/Intro | ||
|
||
Any main(Any value) | ||
float main(float value) | ||
{ | ||
return tan(value); | ||
return tan(value); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.