WPF实现3D粒子波浪效果

 更新时间:2020年09月04日 08:14:25   作者:RunnerDNA  
这篇文章主要为大家详细介绍了WPF实现3D粒子波浪效果,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了WPF实现3D粒子波浪效果的具体代码,供大家参考,具体内容如下

实现效果如下:

步骤:

1、3D粒子类Particle.cs

public class Particle
 {
  public Point3D Position;//位置
  public double Size;//尺寸
  public int XIndex;//X位置标识
  public int YIndex;//Y位置标识
 }

2、粒子系统ParticleSystem类

public class ParticleSystem
 {
  private readonly List<Particle> _particleList;
  private readonly GeometryModel3D _particleModel;
  private readonly int SEPARATION = 100;
 
  public ParticleSystem(int amountX, int amountY, Color color, int Size)
  {
   XParticleCount = amountX;
   YParticleCount = amountY;
 
   _particleList = new List<Particle>();
 
   _particleModel = new GeometryModel3D { Geometry = new MeshGeometry3D() };
 
   var e = new Ellipse
   {
    Width = Size,
    Height = Size
   };
   var b = new RadialGradientBrush();
   b.GradientStops.Add(new GradientStop(Color.FromArgb(0xFF, color.R, color.G, color.B), 0.25));
   b.GradientStops.Add(new GradientStop(Color.FromArgb(0x00, color.R, color.G, color.B), 1.0));
   e.Fill = b;
   e.Measure(new Size(Size, Size));
   e.Arrange(new Rect(0, 0, Size, Size));
 
   Brush brush = null;
   var renderTarget = new RenderTargetBitmap(Size, Size, 96, 96, PixelFormats.Pbgra32);
   renderTarget.Render(e);
   renderTarget.Freeze();
   brush = new ImageBrush(renderTarget);
 
   var material = new DiffuseMaterial(brush);
   _particleModel.Material = material;
  }
 
  public int XParticleCount { get; set; }
  public int YParticleCount { get; set; }
  public Model3D ParticleModel => _particleModel;
  private double _count = 0;
 
  public void Update()
  {
   // 计算粒子位置及大小
   for (int ix = 0; ix < XParticleCount; ix++)
   {
    for (int iy = 0; iy < YParticleCount; iy++)
    {
     foreach (var p in _particleList)
     {
      if(p.XIndex == ix && p.YIndex == iy)
      {
       p.Position.Z = (Math.Sin((ix + _count) * 0.3) * 100) + (Math.Sin((iy + _count) * 0.5) * 100);
       p.Size = (Math.Sin((ix + _count) * 0.3) + 1) * 8 + (Math.Sin((iy + _count) * 0.5) + 1) * 8;
      }
     }
    }
   }
   _count += 0.1;
 
   UpdateGeometry();
  }
 
  private void UpdateGeometry()
  {
   var positions = new Point3DCollection();
   var indices = new Int32Collection();
   var texcoords = new PointCollection();
 
   for (var i = 0; i < _particleList.Count; ++i)
   {
    var positionIndex = i * 4;
    var indexIndex = i * 6;
    var p = _particleList[i];
 
    var p1 = new Point3D(p.Position.X, p.Position.Y, p.Position.Z);
    var p2 = new Point3D(p.Position.X, p.Position.Y + p.Size, p.Position.Z);
    var p3 = new Point3D(p.Position.X + p.Size, p.Position.Y + p.Size, p.Position.Z);
    var p4 = new Point3D(p.Position.X + p.Size, p.Position.Y, p.Position.Z);
 
    positions.Add(p1);
    positions.Add(p2);
    positions.Add(p3);
    positions.Add(p4);
 
    var t1 = new Point(0.0, 0.0);
    var t2 = new Point(0.0, 1.0);
    var t3 = new Point(1.0, 1.0);
    var t4 = new Point(1.0, 0.0);
 
    texcoords.Add(t1);
    texcoords.Add(t2);
    texcoords.Add(t3);
    texcoords.Add(t4);
 
    indices.Add(positionIndex);
    indices.Add(positionIndex + 2);
    indices.Add(positionIndex + 1);
    indices.Add(positionIndex);
    indices.Add(positionIndex + 3);
    indices.Add(positionIndex + 2);
   }
 
   ((MeshGeometry3D)_particleModel.Geometry).Positions = positions;
   ((MeshGeometry3D)_particleModel.Geometry).TriangleIndices = indices;
   ((MeshGeometry3D)_particleModel.Geometry).TextureCoordinates = texcoords;
  }
 
  public void SpawnParticle(double size)
  {
   // 初始化粒子位置和大小
   for (int ix = 0; ix < XParticleCount; ix++)
   {
    for (int iy = 0; iy < YParticleCount; iy++)
    {
     var p = new Particle
     {
      Position = new Point3D(ix * SEPARATION - ((XParticleCount * SEPARATION) / 2), iy * SEPARATION - ((YParticleCount * SEPARATION) / 2), 0),
      Size = size,
      XIndex = ix,
      YIndex = iy,
     };
     _particleList.Add(p);
    }
   }
  }
 }

3、Viewport布局

<Viewport3D Name="World">
   <Viewport3D.Camera>
    <PerspectiveCamera Position="0,50,1000" LookDirection="0,2,-1" UpDirection="0,-1,-1" FieldOfView="10000" NearPlaneDistance="10" FarPlaneDistance="8000"/>
   </Viewport3D.Camera>
   <Viewport3D.Children>
    <ModelVisual3D>
     <ModelVisual3D.Content>
      <Model3DGroup x:Name="WorldModels">
       <AmbientLight Color="#FFFFFFFF" />
      </Model3DGroup>
     </ModelVisual3D.Content>
    </ModelVisual3D>
   </Viewport3D.Children>
</Viewport3D>

4、交互逻辑

private readonly ParticleSystem _ps;
private DispatcherTimer _frameTimer;
 
  public MainWindow()
  {
   InitializeComponent();
 
   _frameTimer = new DispatcherTimer();
   _frameTimer.Tick += OnFrame;
   _frameTimer.Interval = TimeSpan.FromSeconds(1.0 / 60.0);
   _frameTimer.Start();
 
   _ps = new ParticleSystem(50, 50, Colors.White, 30);
 
   WorldModels.Children.Add(_ps.ParticleModel);
 
   _ps.SpawnParticle(30);
 
   KeyDown += Window_KeyDown;
   Cursor = Cursors.None;
  }
 
  private void Window_KeyDown(object sender, KeyEventArgs e)
  {
   if (e.Key == Key.Escape)
    Close();
  }
 
  private void OnFrame(object sender, EventArgs e)
  {
   _ps.Update();
 }

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

相关文章

  • C#使用Socket快速判断数据库连接是否正常的方法

    C#使用Socket快速判断数据库连接是否正常的方法

    这篇文章主要介绍了C#使用Socket快速判断数据库连接是否正常的方法,涉及C#中socket操作的相关技巧,非常具有实用价值,需要的朋友可以参考下
    2015-04-04
  • 详解C#扩展方法原理及其使用

    详解C#扩展方法原理及其使用

    这篇文章主要介绍了C#扩展方法原理及其使用的的相关资料,文中代码非常细致,帮助大家更好的理解和学习,感兴趣的朋友可以了解下
    2020-06-06
  • C#微信公众号开发之使用MessageHandler简化消息处理流程

    C#微信公众号开发之使用MessageHandler简化消息处理流程

    这篇文章介绍了C#微信公众号开发之使用MessageHandler简化消息处理流程,文中通过示例代码介绍的非常详细。对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
    2022-06-06
  • C#实现向指定文本文件添加内容的方法

    C#实现向指定文本文件添加内容的方法

    这篇文章主要介绍了C#实现向指定文本文件添加内容的方法,涉及C#操作文本文件的相关技巧,具有一定参考借鉴价值,需要的朋友可以参考下
    2015-04-04
  • c# 在windows中操作IIS设置FTP服务器的示例

    c# 在windows中操作IIS设置FTP服务器的示例

    这篇文章主要介绍了c# 在windows中操作IIS设置FTP服务器的示例,帮助大家更好的理解和学习使用c#,感兴趣的朋友可以了解下
    2021-03-03
  • C# Stack堆栈的使用方法

    C# Stack堆栈的使用方法

    最近打算学习下C# Stack堆栈的使用方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2009-01-01
  • C#6.0新语法示例详解

    C#6.0新语法示例详解

    这篇文章主要给大家介绍了关于C#6.0新语法的相关资料,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2020-12-12
  • C#读取中文文件出现乱码的解决方法

    C#读取中文文件出现乱码的解决方法

    这篇文章主要介绍了C#读取中文文件出现乱码的解决方法,涉及C#中文编码的操作技巧,非常具有实用价值,需要的朋友可以参考下
    2015-05-05
  • C# EF去除重复列DistinctBy方式

    C# EF去除重复列DistinctBy方式

    这篇文章主要介绍了C# EF去除重复列DistinctBy方式,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
    2023-01-01
  • c#取得控制台应用程序根目录

    c#取得控制台应用程序根目录

    编写程序的时候,经常需要用的项目根目录。现在把方法总结如下分享给大家
    2014-01-01

最新评论