You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
791 B
31 lines
791 B
using System.Reflection;
|
|
|
|
namespace UnityEditor.ShaderGraph
|
|
{
|
|
[Title("Math", "Advanced", "Reciprocal Square Root")]
|
|
class ReciprocalSquareRootNode : CodeFunctionNode
|
|
{
|
|
public ReciprocalSquareRootNode()
|
|
{
|
|
name = "Reciprocal Square Root";
|
|
synonyms = new string[] { "rsqrt", "inversesqrt" };
|
|
}
|
|
|
|
protected override MethodInfo GetFunctionToConvert()
|
|
{
|
|
return GetType().GetMethod("Unity_Rsqrt", BindingFlags.Static | BindingFlags.NonPublic);
|
|
}
|
|
|
|
static string Unity_Rsqrt(
|
|
[Slot(0, Binding.None, 1, 1, 1, 1)] DynamicDimensionVector In,
|
|
[Slot(1, Binding.None)] out DynamicDimensionVector Out)
|
|
{
|
|
return
|
|
@"
|
|
{
|
|
Out = rsqrt(In);
|
|
}
|
|
";
|
|
}
|
|
}
|
|
}
|