VisualShaderNodeScalarSmoothStep.xml 800 B

1234567891011121314151617
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <class name="VisualShaderNodeScalarSmoothStep" inherits="VisualShaderNode" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd">
  3. <brief_description>
  4. Calculates a scalar SmoothStep function within the visual shader graph.
  5. </brief_description>
  6. <description>
  7. Translates to [code]smoothstep(edge0, edge1, x)[/code] in the shader language.
  8. Returns [code]0.0[/code] if [code]x[/code] is smaller than [code]edge0[/code] and [code]1.0[/code] if [code]x[/code] is larger than [code]edge1[/code]. Otherwise the return value is interpolated between [code]0.0[/code] and [code]1.0[/code] using Hermite polynomials.
  9. </description>
  10. <tutorials>
  11. </tutorials>
  12. <methods>
  13. </methods>
  14. <constants>
  15. </constants>
  16. </class>