UnityMol  0.9.6-875
UnityMol viewer / In developement
MeshData.cs
Go to the documentation of this file.
1 using UnityEngine;
2 using System.Collections;
3 
4 public class MeshData {
5  public int[] triangles;
6  public Vector3[] vertices;
7  public Vector3[] normals;
8  public Color32[] colors;
9 }
Vector3[] normals
Definition: MeshData.cs:7
Color32[] colors
Definition: MeshData.cs:8
int[] triangles
Definition: MeshData.cs:5
Vector3[] vertices
Definition: MeshData.cs:6