예제 #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;
			}