CustomBlendingEquations.html 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <!DOCTYPE html>
  2. <html lang="ar">
  3. <head>
  4. <meta charset="utf-8" />
  5. <base href="../../../" />
  6. <script src="page.js"></script>
  7. <link type="text/css" rel="stylesheet" href="page.css" />
  8. </head>
  9. <body class="rtl">
  10. <h1>ثوابت معادلات الدمج المخصصة (Custom Blending Equation Constants)</h1>
  11. <p>
  12. تعمل هذه الثوابت مع جميع أنواع المواد. يتم تعيين وضع الدمج للمادة أولاً إلى THREE.CustomBlending، ثم تعيين معادلة الدمج المطلوبة وعامل المصدر وعامل الوجهة.
  13. </p>
  14. <h2>مثال للكود</h2>
  15. <code>
  16. const material = new THREE.MeshBasicMaterial( {color: 0x00ff00} );
  17. material.blending = THREE.CustomBlending;
  18. material.blendEquation = THREE.AddEquation; //default
  19. material.blendSrc = THREE.SrcAlphaFactor; //default
  20. material.blendDst = THREE.OneMinusSrcAlphaFactor; //default
  21. </code>
  22. <h2>أمثلة (Examples)</h2>
  23. <p>
  24. [example:webgl_materials_blending_custom materials / blending / custom ]
  25. </p>
  26. <h2>معادلات الدمج (Blending Equations)</h2>
  27. <code>
  28. THREE.AddEquation
  29. THREE.SubtractEquation
  30. THREE.ReverseSubtractEquation
  31. THREE.MinEquation
  32. THREE.MaxEquation
  33. </code>
  34. <h2>عوامل المصدر (Source Factors)</h2>
  35. <code>
  36. THREE.ZeroFactor
  37. THREE.OneFactor
  38. THREE.SrcColorFactor
  39. THREE.OneMinusSrcColorFactor
  40. THREE.SrcAlphaFactor
  41. THREE.OneMinusSrcAlphaFactor
  42. THREE.DstAlphaFactor
  43. THREE.OneMinusDstAlphaFactor
  44. THREE.DstColorFactor
  45. THREE.OneMinusDstColorFactor
  46. THREE.SrcAlphaSaturateFactor
  47. </code>
  48. <h2>عوامل الوجهة (Destination Factors)</h2>
  49. <p>
  50. جميع عوامل المصدر صالحة كعوامل وجهة، باستثناء
  51. <code>THREE.SrcAlphaSaturateFactor</code>
  52. </p>
  53. <h2>المصدر (Source)</h2>
  54. <p>
  55. [link:https://github.com/mrdoob/three.js/blob/master/src/constants.js src/constants.js]
  56. </p>
  57. </body>
  58. </html>