Request Simple Mesh Wanted

jarmonik

Well-known member
Orbiter Contributor
Addon Developer
Beta Tester
Joined
Mar 28, 2008
Messages
2,666
Reaction score
795
Points
128
Hello,

I would need a simple mesh for Orbiter development in Orbiter's (*.msh) format and I don't have proper tools/time to study a use of them. It's a unit sized cube (i.e 8 vertices and 12 triangles) corners (1,1,1) and (-1,-1,-1). Camera would be inside the cube and normals facing inside. No texcoords needed. Thanks.
 

GLS

Well-known member
Orbiter Contributor
Addon Developer
Joined
Mar 22, 2008
Messages
5,917
Reaction score
2,921
Points
188
Website
github.com
Will this do?
Code:
MSHX1
GROUPS 1
LABEL Cube
MATERIAL 0
GEOM 8 12
1.0 -1.0 1.0 -0.5773491859436035 0.5773491859436035 -0.5773491859436035
1.0 1.0 1.0 -0.5773491859436035 -0.5773491859436035 -0.5773491859436035
1.0 -1.0 -1.0 -0.5773491859436035 0.5773491859436035 0.5773491859436035
1.0 1.0 -1.0 -0.5773491859436035 -0.5773491859436035 0.5773491859436035
-1.0 -1.0 1.0 0.5773491859436035 0.5773491859436035 -0.5773491859436035
-1.0 1.0 1.0 0.5773491859436035 -0.5773491859436035 -0.5773491859436035
-1.0 -1.0 -1.0 0.5773491859436035 0.5773491859436035 0.5773491859436035
-1.0 1.0 -1.0 0.5773491859436035 -0.5773491859436035 0.5773491859436035
0 3 2
3 0 1
2 7 6
7 2 3
6 5 4
5 6 7
4 1 0
1 4 5
2 4 0
4 2 6
7 1 5
1 7 3
MATERIALS 0
TEXTURES 0
 

jarmonik

Well-known member
Orbiter Contributor
Addon Developer
Beta Tester
Joined
Mar 28, 2008
Messages
2,666
Reaction score
795
Points
128
Perfect, Thanks.
 
Top