CustomBlendingEquations.html 955 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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
  16. </div>
  17. <h2>Destination Factors</h2>
  18. <div>
  19. THREE.ZeroFactor<br />
  20. THREE.OneFactor<br />
  21. THREE.SrcColorFactor<br />
  22. THREE.OneMinusSrcColorFactor<br />
  23. THREE.SrcAlphaFactor<br />
  24. THREE.OneMinusSrcAlphaFactor<br />
  25. THREE.DstAlphaFactor<br />
  26. THREE.OneMinusDstAlphaFactor
  27. </div>
  28. <h2>Source Factors</h2>
  29. <div>
  30. THREE.DstColorFactor<br />
  31. THREE.OneMinusDstColorFactor<br />
  32. THREE.SrcAlphaSaturateFactor
  33. </div>
  34. <h2>Source</h2>
  35. [link:https://github.com/mrdoob/three.js/blob/master/src/Three.js src/Three.js]
  36. </body>
  37. </html>