41 lines
723 B
HTML
41 lines
723 B
HTML
<!DOCTYPE html>
|
||
<html lang="zh">
|
||
<head>
|
||
<meta charset="utf-8" />
|
||
<base href="../../../" />
|
||
<script src="page.js"></script>
|
||
<link type="text/css" rel="stylesheet" href="page.css" />
|
||
</head>
|
||
<body>
|
||
<h1>动画常量(Animation Constants)</h1>
|
||
|
||
<h2>循环模式</h2>
|
||
|
||
<code>
|
||
THREE.LoopOnce
|
||
THREE.LoopRepeat
|
||
THREE.LoopPingPong
|
||
</code>
|
||
|
||
<h2>插值模式</h2>
|
||
<code>
|
||
THREE.InterpolateDiscrete
|
||
THREE.InterpolateLinear
|
||
THREE.InterpolateSmooth
|
||
</code>
|
||
|
||
<h2>结束模式</h2>
|
||
<code>
|
||
THREE.ZeroCurvatureEnding
|
||
THREE.ZeroSlopeEnding
|
||
THREE.WrapAroundEnding
|
||
</code>
|
||
|
||
<h2>源代码</h2>
|
||
|
||
<p>
|
||
[link:https://github.com/mrdoob/three.js/blob/master/src/constants.js src/constants.js]
|
||
</p>
|
||
</body>
|
||
</html>
|