Got the plane (Screen Shots included)
- Dan
- Halfling
- Posts: 74
- Joined: Fri Jan 02, 2004 9:28 pm
- Location: USA
- Contact:
Got the plane (Screen Shots included)
anyone have a .mesh format plane (flat 4sided) w/ 1000 vets
if you do please post it
i don't really care if it has a texture i just want to try out something that i am making
(i don't really have the 3d utilities to make it)
thx
Edit: i was able to use blender to make a plane
if you do please post it
i don't really care if it has a texture i just want to try out something that i am making
(i don't really have the 3d utilities to make it)
thx
Edit: i was able to use blender to make a plane
Last edited by Dan on Sun Jul 17, 2005 6:04 am, edited 2 times in total.
Free 3d Models in .mesh format!
(click below) (23 free models!)
http://www.geocities.com/danbrianwhite/
Wings3d Converter with GUI
http://danbrianwhite.googlepages.com/Wi ... Helper.zip
(click below) (23 free models!)
http://www.geocities.com/danbrianwhite/
Wings3d Converter with GUI
http://danbrianwhite.googlepages.com/Wi ... Helper.zip
- Mr.Bloodworth
- Halfling
- Posts: 91
- Joined: Fri Mar 25, 2005 3:19 am
Re: anyone have a .mesh format plane (flat 4sided) w/ 1000 v
No dot mesh, but i can make you a 3DS, or OBJ.Dan wrote:anyone have a .mesh format plane (flat 4sided) w/ 1000 vets
if you do please post it
i don't really care if it has a texture i just want to try out something that i am making
(i don't really have the 3d utilities to make it)
thx
And do you mean 1000 vertcies or polygons?
- baxissimo
- Greenskin
- Posts: 135
- Joined: Wed Feb 23, 2005 1:28 pm
- Location: Tokyo, JAPAN
Not having "the 3d utilities" shouldn't stop you. Everything you need is freely available.
Here's what you need to do:
Step 1: Download Blender from http://www.blender3d.org
Step 2: Download Blender to Ogre Exporter from http://www.ogre3d.org under the Dowloads -> Tools section.
Step 3: In Blender make a plane (space-bar -> "Add" -> "Plane")
Step 4: Subdivide to your liking (W key followed by 1 key will do it)
Step 5: Run Ogre exporter to generate a .mesh.xml file.
Step 6: Run OgreXMLConverter on the .mesh.xml to make a .mesh
Or better yet, seeing as how you are probably a programmer and not a 3d artist (one can at least hope), use the OgreXMLConverter to convert any .mesh to XML and examine the resulting format. From there it should be pretty trivial to figure out how to write a simple script in python, or whatever your favorite language happens to be, that will generate the necessary <mesh> and <geometry> and <faces>, etc blocks. It's a pretty simple format for something basic like you want with just one submesh and one or no materials.
One more alternative: build the mesh from scratch programmatically in Ogre. The Water demo basically builds a tesselated plane as its first step. Then it perturbs the Z coords to make waves, but you can leave that part out.
Hope that helps!
Here's what you need to do:
Step 1: Download Blender from http://www.blender3d.org
Step 2: Download Blender to Ogre Exporter from http://www.ogre3d.org under the Dowloads -> Tools section.
Step 3: In Blender make a plane (space-bar -> "Add" -> "Plane")
Step 4: Subdivide to your liking (W key followed by 1 key will do it)
Step 5: Run Ogre exporter to generate a .mesh.xml file.
Step 6: Run OgreXMLConverter on the .mesh.xml to make a .mesh
Or better yet, seeing as how you are probably a programmer and not a 3d artist (one can at least hope), use the OgreXMLConverter to convert any .mesh to XML and examine the resulting format. From there it should be pretty trivial to figure out how to write a simple script in python, or whatever your favorite language happens to be, that will generate the necessary <mesh> and <geometry> and <faces>, etc blocks. It's a pretty simple format for something basic like you want with just one submesh and one or no materials.
One more alternative: build the mesh from scratch programmatically in Ogre. The Water demo basically builds a tesselated plane as its first step. Then it perturbs the Z coords to make waves, but you can leave that part out.
Hope that helps!
- Dan
- Halfling
- Posts: 74
- Joined: Fri Jan 02, 2004 9:28 pm
- Location: USA
- Contact:
thx Mr.Bloodworth, and baxissimo that will help (i guess i need to learn blender better
) ill try to make one myself
Free 3d Models in .mesh format!
(click below) (23 free models!)
http://www.geocities.com/danbrianwhite/
Wings3d Converter with GUI
http://danbrianwhite.googlepages.com/Wi ... Helper.zip
(click below) (23 free models!)
http://www.geocities.com/danbrianwhite/
Wings3d Converter with GUI
http://danbrianwhite.googlepages.com/Wi ... Helper.zip
- monster
- OGRE Community Helper

- Posts: 1098
- Joined: Mon Sep 22, 2003 2:40 am
- Location: Melbourne, Australia
- Contact:
- Dan
- Halfling
- Posts: 74
- Joined: Fri Jan 02, 2004 9:28 pm
- Location: USA
- Contact:
i finally got one made
Thx for the response Monster, but i need a .mesh file for the way that i do my collision (triangle ray) and i got a plane made
Free 3d Models in .mesh format!
(click below) (23 free models!)
http://www.geocities.com/danbrianwhite/
Wings3d Converter with GUI
http://danbrianwhite.googlepages.com/Wi ... Helper.zip
(click below) (23 free models!)
http://www.geocities.com/danbrianwhite/
Wings3d Converter with GUI
http://danbrianwhite.googlepages.com/Wi ... Helper.zip
-
nfz
- OGRE Retired Team Member

- Posts: 1263
- Joined: Wed Sep 24, 2003 4:00 pm
- Location: Halifax, Nova Scotia, Canada
Dan: once you get Ogre to create the plane for you, you can use the mesh serializer to export it for you to a .mesh file:
http://www.ogre3d.org/docs/api/html/cla ... rializera2
http://www.ogre3d.org/docs/api/html/cla ... rializera2
- baxissimo
- Greenskin
- Posts: 135
- Joined: Wed Feb 23, 2005 1:28 pm
- Location: Tokyo, JAPAN
Cheater!monster wrote:What about Ogre::MeshManager::createPlane?
Just kidding. Yeh, that sounds like the way to go. Probably a better idea than spending a week trying to learn Blender
@dan - are you sure your collision scheme really requires that you load the plane from a .mesh? How could that be? Whether you call MeshManager::getSingleton().createPlane() or load a .mesh from a file, the result is an Ogre::Mesh in memory.
- Dan
- Halfling
- Posts: 74
- Joined: Fri Jan 02, 2004 9:28 pm
- Location: USA
- Contact:
well, i didn't know that, but i made a plane in blender
Here is a screenshot of the simple plane

This is another screenshot after the penguin wore a path into the snow

At least i was able to start to make what i wanted
Here is a screenshot of the simple plane

This is another screenshot after the penguin wore a path into the snow

At least i was able to start to make what i wanted
Free 3d Models in .mesh format!
(click below) (23 free models!)
http://www.geocities.com/danbrianwhite/
Wings3d Converter with GUI
http://danbrianwhite.googlepages.com/Wi ... Helper.zip
(click below) (23 free models!)
http://www.geocities.com/danbrianwhite/
Wings3d Converter with GUI
http://danbrianwhite.googlepages.com/Wi ... Helper.zip
- discipline
- OGRE Community Helper

- Posts: 766
- Joined: Mon May 16, 2005 12:09 am