Skip to content

Commit

Permalink
add Float - Arctangent 2
Browse files Browse the repository at this point in the history
  • Loading branch information
pragma37 committed Nov 18, 2022
1 parent 25c6efe commit 31426b8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Malt/Shaders/Node Utils 2/Float.glsl
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,8 @@ float Float_asin(float a) { return asin(a); }
float Float_acos(float a) { return acos(a); }
/*META @meta: label=Arctangent;*/
float Float_atan(float a) { return atan(a); }
/*META @meta: label=Arctangent 2;*/
float Float_atan2(float a, float b) { return atan(a, b); }

/*META @meta: label=Radians to Degrees;*/
float Float_degrees(float a) { return degrees(a); }
Expand Down

1 comment on commit 31426b8

@hitrpr
Copy link

@hitrpr hitrpr commented on 31426b8 Nov 26, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yay, thanks!

Please sign in to comment.