📄 rectangleparticleculler.as
字号:
package org.papervision3d.core.culling{ import org.papervision3d.core.geom.renderables.Particle; import flash.geom.Rectangle; import flash.geom.Point; import org.papervision3d.core.geom.renderables.Vertex3DInstance; public class RectangleParticleCuller implements IParticleCuller { private static var vInstance:Vertex3DInstance; private static var testPoint:Point; public var cullingRectangle:Rectangle; public function RectangleParticleCuller(cullingRectangle:Rectangle = null) { this.cullingRectangle = cullingRectangle; testPoint = new Point(); } public function testParticle(particle:Particle):Boolean { vInstance = particle.vertex3D.vertex3DInstance; if(vInstance.visible){ testPoint.x = vInstance.x; testPoint.y = vInstance.y; if(cullingRectangle.containsPoint(testPoint)){ return true; } } return false; } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -