本文整理匯總了C#中Microsoft.Xna.Framework.Graphics.Model.Equals方法的典型用法代碼示例。如果您正苦於以下問題:C# Model.Equals方法的具體用法?C# Model.Equals怎麽用?C# Model.Equals使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Microsoft.Xna.Framework.Graphics.Model
的用法示例。
在下文中一共展示了Model.Equals方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: DibujaModelo
private void DibujaModelo(Model model, Matrix world)
{
Matrix[] transforms = new Matrix[model.Bones.Count];
model.CopyAbsoluteBoneTransformsTo(transforms);
float aspectRatio = (float)device.Viewport.Width / device.Viewport.Height;
//float aspectRatio = 1f;
foreach (ModelMesh mesh in model.Meshes)
{
foreach (BasicEffect effect in mesh.Effects)
{
effect.EnableDefaultLighting();
effect.PreferPerPixelLighting = true;
effect.World = transforms[mesh.ParentBone.Index] * world;
//effect.World = mesh.ParentBone.Transform * world;
effect.View = Matrix.CreateLookAt(cameraPosition, lookAt, Vector3.Up);
effect.Projection = Matrix.CreatePerspectiveFieldOfView(MathHelper.ToRadians(45.0f), aspectRatio, 1.0f, 100000.0f);
//effect.Projection = Matrix.CreatePerspectiveFieldOfView(MathHelper.ToRadians(45.0f), aspectRatio, 1.0f, 10f);
//effect.View = camera.View;
//effect.Projection = camera.Projection;
}
mesh.Draw();
if (model.Equals(modeloFlecha))
esferaf = mesh.BoundingSphere;
if (model.Equals(modeloBlanco))
esferab = mesh.BoundingSphere;
}
}