CustomBlendingEquations.html 1015 B

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