示例#1
0
文件: Mesh.cs 项目: brianex/osu-sgl
			public Edge(Mesh mesh, int v0, int v1) {
				this.mesh = mesh;
				this.v0 = v0;
				this.v1 = v1;
			}
示例#2
0
文件: Mesh.cs 项目: brianex/osu-sgl
			public Face(Mesh mesh) {
				this.mesh = mesh;
			}
示例#3
0
			public FaceClass(Mesh.Face face) {
				this.face = face;
			}
示例#4
0
		private MeshClass(String path) {
			mesh = new Mesh(path);
		}
示例#5
0
			public VertexClass(Mesh.Vertex vertex) {
				this.vertex = vertex;
			}
示例#6
0
			public EdgeClass(Mesh.Edge edge) {
				this.edge = edge;
			}