⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pointlight3d.as.svn-base

📁 ActionScript写的3D图片展示功能
💻 SVN-BASE
字号:
package org.papervision3d.lights{	import org.papervision3d.core.math.Number3D;	import org.papervision3d.core.proto.LightObject3D;		public class PointLight3D extends LightObject3D	{		public static var DEFAULT_POS:Number3D = new Number3D( 0, 0, -1000 );				/**		 * Constructor.		 * 		 * @param	showLight	A Boolean value indicating whether the light is visible.		 * @param	flipped		A Boolean value indicating whether to flip the light-direction (needed for correct DAE-shading).		 */		public function PointLight3D(showLight:Boolean = false, flipped:Boolean = false)		{			super(showLight, flipped);			x = DEFAULT_POS.x;			y = DEFAULT_POS.y;			z = DEFAULT_POS.z;		}		}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -