CustomBlendingEquations.html 1001 字节
Newer Older
B
Brent Van Minnen 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
<!DOCTYPE html>
<html lang="en">
	<head>
		<meta charset="utf-8" />
		<script src="../../list.js"></script>
		<script src="../../page.js"></script>
		<link type="text/css" rel="stylesheet" href="../../page.css" />
	</head>
	<body>
		<h1>Custom Blending Equation Constants</h1>

    <h2>Equations</h2>
    <div>
    THREE.AddEquation<br />
    THREE.SubtractEquation<br />
    THREE.ReverseSubtractEquation
    </div>

    <h2>Destination Factors</h2>
    <div>
    THREE.ZeroFactor<br />
    THREE.OneFactor<br />
    THREE.SrcColorFactor<br />
    THREE.OneMinusSrcColorFactor<br />
    THREE.SrcAlphaFactor<br />
    THREE.OneMinusSrcAlphaFactor<br />
    THREE.DstAlphaFactor<br />
    THREE.OneMinusDstAlphaFactor
    </div>

    <h2>Source Factors</h2>
    <div>
    THREE.DstColorFactor<br />
    THREE.OneMinusDstColorFactor<br />
    THREE.SrcAlphaSaturateFactor
    </div>

		<h2>Source</h2>

		[link:https://github.com/mrdoob/three.js/blob/master/src/Three.js src/Three.js]
	</body>
</html>