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.
33 lines
784 B
33 lines
784 B
using System.Reflection;
|
|
using UnityEngine;
|
|
|
|
namespace UnityEditor.ShaderGraph
|
|
{
|
|
[Title("Math", "Matrix", "Matrix Determinant")]
|
|
class MatrixDeterminantNode : CodeFunctionNode
|
|
{
|
|
public MatrixDeterminantNode()
|
|
{
|
|
name = "Matrix Determinant";
|
|
}
|
|
|
|
public override bool hasPreview => false;
|
|
|
|
protected override MethodInfo GetFunctionToConvert()
|
|
{
|
|
return GetType().GetMethod("Unity_MatrixDeterminant", BindingFlags.Static | BindingFlags.NonPublic);
|
|
}
|
|
|
|
static string Unity_MatrixDeterminant(
|
|
[Slot(0, Binding.None)] DynamicDimensionMatrix In,
|
|
[Slot(1, Binding.None)] out Vector1 Out)
|
|
{
|
|
return
|
|
@"
|
|
{
|
|
Out = determinant(In);
|
|
}
|
|
";
|
|
}
|
|
}
|
|
}
|