CustomBlendingEquations.html 1007 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <script src="../../list.js"></script>
  6. <script src="../../page.js"></script>
  7. <link type="text/css" rel="stylesheet" href="../../page.css" />
  8. </head>
  9. <body>
  10. <h1>Custom Blending Equation Constants</h1>
  11. <h2>Equations</h2>
  12. <div>
  13. THREE.AddEquation<br />
  14. THREE.SubtractEquation<br />
  15. THREE.ReverseSubtractEquation<br />
  16. THREE.MinEquation<br />
  17. THREE.MaxEquation
  18. </div>
  19. <h2>Destination Factors</h2>
  20. <div>
  21. THREE.ZeroFactor<br />
  22. THREE.OneFactor<br />
  23. THREE.SrcColorFactor<br />
  24. THREE.OneMinusSrcColorFactor<br />
  25. THREE.SrcAlphaFactor<br />
  26. THREE.OneMinusSrcAlphaFactor<br />
  27. THREE.DstAlphaFactor<br />
  28. THREE.OneMinusDstAlphaFactor
  29. </div>
  30. <h2>Source Factors</h2>
  31. <div>
  32. THREE.DstColorFactor<br />
  33. THREE.OneMinusDstColorFactor<br />
  34. THREE.SrcAlphaSaturateFactor
  35. </div>
  36. <h2>Source</h2>
  37. [link:https://github.com/mrdoob/three.js/blob/master/src/Three.js src/Three.js]
  38. </body>
  39. </html>