Unity3D网格功能生成球体网格模型

所属分类: 软件编程 / C#教程 阅读数: 136
收藏 0 赞 0 分享

本文实例为大家分享了Unity3D网格功能生成球体网格模型的具体代码,供大家参考,具体内容如下

前面已经讲过怎样使用mesh生成一个自己的网格,那么本文将会讲述怎样将这个网格变换成自己想要的形状,比如一个球体。

我们需要知道一个从平面坐标到球体坐标的映射公式。假设平面坐标是(x,y),球体坐标是(x0,y0,z0),则

球体坐标(x0,y0,z0)可以通过以下代码得到,(x,y) 对应vertices[i].x和vertices[i].y。

 v.x = r * Mathf.Cos(vertices[i].x / width * 2 * Mathf.PI) * Mathf.Cos(vertices[i].y / height * Mathf.PI - Mathf.PI / 2);
 v.y = r * Mathf.Sin(vertices[i].x / width * 2 * Mathf.PI) * Mathf.Cos(vertices[i].y / height * Mathf.PI - Mathf.PI / 2);
v.z = r * Mathf.Sin(vertices[i].y / height * Mathf.PI - Mathf.PI / 2);

完整代码在最后,将完整的脚本绑定到一个空物体上,把棋盘格图案chessboard.jpg放到Assets\Resources下,还要在场景中生成一个sphere作为显示网格顶点的辅助物体。一切就绪后,运行效果如下:

using UnityEngine;
using System.Collections;
 
public class BallMesh : MonoBehaviour
{
 
 Mesh mesh;
 Vector3[] vertices;
 Vector2[] uv;
 int[] triangles;
 Vector3[] normals;
 public GameObject sphere;
 GameObject[] spheres;
 
 void Start()
 {
  gameObject.AddComponent<MeshFilter>();
  gameObject.AddComponent<MeshRenderer>();
  Texture img = (Texture)Resources.Load("tm");
  gameObject.GetComponent<Renderer>().material.mainTexture = img;
  mesh = new Mesh();
  int m = 25; //row 
  int n = 50; //col 
  float width = 8;
  float height = 6;
  vertices = new Vector3[(m + 1) * (n + 1)];//the positions of vertices 
  spheres = new GameObject[(m + 1) * (n + 1)];
  uv = new Vector2[(m + 1) * (n + 1)];
  normals = new Vector3[(m + 1) * (n + 1)];
  triangles = new int[6 * m * n];
  for (int i = 0; i < vertices.Length; i++)
  {
   float x = i % (n + 1);
   float y = i / (n + 1);
   float x_pos = x / n * width;
   float y_pos = y / m * height;
   vertices[i] = new Vector3(x_pos, y_pos, 0);
   float u = x / n;
   float v = y / m;
   uv[i] = new Vector2(u, v);
  }
  for (int i = 0; i < 2 * m * n; i++)
  {
   int[] triIndex = new int[3];
   if (i % 2 == 0)
   {
    triIndex[0] = i / 2 + i / (2 * n);
    triIndex[1] = triIndex[0] + 1;
    triIndex[2] = triIndex[0] + (n + 1);
   }
   else
   {
    triIndex[0] = (i + 1) / 2 + i / (2 * n);
    triIndex[1] = triIndex[0] + (n + 1);
    triIndex[2] = triIndex[1] - 1;
 
   }
   triangles[i * 3] = triIndex[0];
   triangles[i * 3 + 1] = triIndex[1];
   triangles[i * 3 + 2] = triIndex[2];
  }
  
  int r = 10;
  for (int i = 0; i < vertices.Length; i++)
  {
   spheres[i] = Instantiate( sphere,this.transform) as GameObject;
   Vector3 v ;
   v.x = r * Mathf.Cos(vertices[i].x / width * 2 * Mathf.PI) * Mathf.Cos(vertices[i].y / height * Mathf.PI - Mathf.PI / 2);
   v.y = r * Mathf.Sin(vertices[i].x / width * 2 * Mathf.PI) * Mathf.Cos(vertices[i].y / height * Mathf.PI - Mathf.PI / 2);
   v.z = r * Mathf.Sin(vertices[i].y / height * Mathf.PI - Mathf.PI / 2);
   //v = vertices[i];
 
   vertices[i] = v;
   spheres[i].transform.localPosition = v;
 
   normals[i] = new Vector3(0,1,0);
  }
  
  mesh.vertices = vertices;
  mesh.normals = normals;
  mesh.uv = uv;
  mesh.triangles = triangles;
  this.GetComponent<MeshFilter>().mesh = mesh;
 
 }
 
} 

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

更多精彩内容其他人还在看

c#开发word批量转pdf源码分享

已经安装有Office环境,借助一些简单的代码即可实现批量Word转PDF,看下面的实例源码吧
收藏 0 赞 0 分享

c# xml API操作的小例子

这篇文章主要介绍了c# xml API操作的小例子,有需要的朋友可以参考一下
收藏 0 赞 0 分享

c#唯一值渲染实例代码

这篇文章主要介绍了c#唯一值渲染实例代码,有需要的朋友可以参考一下
收藏 0 赞 0 分享

淘宝IP地址库采集器c#代码

这篇文章主要介绍了淘宝IP地址库采集器c#代码,有需要的朋友可以参考一下
收藏 0 赞 0 分享

C#在后台运行操作(BackgroundWorker用法)示例分享

BackgroundWorker类允许在单独的专用线程上运行操作。如果需要能进行响应的用户界面,而且面临与这类操作相关的长时间延迟,则可以使用BackgroundWorker类方便地解决问题,下面看示例
收藏 0 赞 0 分享

c#文本加密程序代码示例

这是一个加密软件,但只限于文本加密,加了窗口控件的滑动效果,详细看下面的代码
收藏 0 赞 0 分享

c#生成站点地图(SiteMapPath)文件示例程序

这篇文章主要介绍了c#生成站点地图(SiteMapPath)文件的示例,大家参考使用
收藏 0 赞 0 分享

C# 键盘Enter键取代Tab键实现代码

这篇文章主要介绍了C# 键盘Enter键取代Tab键实现代码,有需要的朋友可以参考一下
收藏 0 赞 0 分享

C# WinForm导出Excel方法介绍

在.NET应用中,导出Excel是很常见的需求,导出Excel报表大致有以下三种方式:Office PIA,文件流和NPOI开源库,本文只介绍前两种方式
收藏 0 赞 0 分享

C#串口通信程序实例详解

在.NET平台下创建C#串口通信程序,.NET 2.0提供了串口通信的功能,其命名空间是System.IO.Ports,创建C#串口通信程序的具体实现是如何的呢?让我们开始吧
收藏 0 赞 0 分享
查看更多