當前位置: 首頁>>代碼示例>>C#>>正文


C# TgcBoundingBox.clone方法代碼示例

本文整理匯總了C#中TgcViewer.Utils.TgcGeometry.TgcBoundingBox.clone方法的典型用法代碼示例。如果您正苦於以下問題:C# TgcBoundingBox.clone方法的具體用法?C# TgcBoundingBox.clone怎麽用?C# TgcBoundingBox.clone使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在TgcViewer.Utils.TgcGeometry.TgcBoundingBox的用法示例。


在下文中一共展示了TgcBoundingBox.clone方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: clonarBoundingBoxArbol

 private TgcBoundingBox clonarBoundingBoxArbol(TgcBoundingBox bb)
 {
     TgcBoundingBox bbClon = bb.clone();
     Vector3 pos = bb.calculateBoxCenter();
     pos.Y = 0f;
     pos.Z -= 40f;
     pos.X -= 30f;
     bbClon.scaleTranslate(pos, new Vector3(0.3f, 1f, 0.3f));
     return bbClon;
 }
開發者ID:julisalis,項目名稱:2015-tgc-fps,代碼行數:10,代碼來源:EjemploAlumno.cs

示例2: colisionar

        public bool colisionar(TgcBoundingBox objeto,List<Vector3> centros)
        {
            if (objeto.Position.Y - (centros[0].Y + escalaY ) - tolerancia > EPSILON)
            {//si esta lejos en el eje y, no tiene sentido testear lo demas.
                objeto.setRenderColor(Color.Yellow);
                return false;
            }
            objeto.setRenderColor(Color.Red);
            centros_probables.Clear();
            if (objeto.Position.Y < 0) { return true; } //Si el avion avanza demasiado rápido  y no se llega a checkear la colisión
            foreach (Vector3 centro in centros)
            {

                if((Math.Pow(objeto.Position.X - centro.X, 2) + Math.Pow(objeto.Position.Z - centro.Z,2)) - Math.Pow(tamanio_terrenos/2,2) < EPSILON)
                {//si el centro esta cerca en altura, y en horizontal lo guardo para colisionar
                    centros_probables.Add(centro);
                }
            }

            //veo si colisionan los terrenos
            Vector3 nuevaPosicion;
            List<Vector3> verticesEnEsfera = new List<Vector3>();
            TgcBoundingBox bounding = objeto.clone();
            foreach (Vector3 centro in centros_probables)
            {
                //desplazo el avion en vez del terreno para testear colisiones
                nuevaPosicion = Vector3.Subtract(objeto.Position,centro);

                bounding.move(Vector3.Multiply(centro,-1f));
                verticesEnEsfera.Clear();
                TgcBoundingSphere esfera = new TgcBoundingSphere(nuevaPosicion,tolerancia);
                Vector3 colision = new Vector3();
                for (int i = 0; i < verticesTerreno.Length; i += 3)
                {
                    if (TgcCollisionUtils.testSphereTriangle(esfera, verticesTerreno[i].Position, verticesTerreno[i + 1].Position, verticesTerreno[i + 2].Position,out colision))
                    {
                        if (TgcCollisionUtils.testTriangleAABB( verticesTerreno[i].Position, verticesTerreno[i + 1].Position, verticesTerreno[i + 2].Position,bounding))
                        {
                            return true;
                        }
                    }
                }
                /*
                foreach (CustomVertex.PositionTextured vertice in verticesTerreno)
                {
                    if ( Vector3.LengthSq(Vector3.Subtract(nuevaPosicion,vertice.Position)) - toleranciaSQ < EPSILON)
                    {
                        verticesEnEsfera.Add(vertice.Position);
                    }
                }

                foreach (Vector3 vertice in verticesEnEsfera)
                {
                    if (TgcCollisionUtils.sqDistPointAABB(vertice, bounding) < EPSILON)
                    {
                        return true;
                    }
                }*/

            }
            return false;
        }
開發者ID:Javier-Rotelli,項目名稱:TGCJetPilot,代碼行數:62,代碼來源:Colisionador.cs


注:本文中的TgcViewer.Utils.TgcGeometry.TgcBoundingBox.clone方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。