Axiom.Core.MeshManager.CreatePlane C# (CSharp) Method

CreatePlane() public method

public CreatePlane ( string name, string group, Axiom.MathLib.Plane plane, float width, float height, int xSegments, int ySegments, bool normals, int texCoordSetCount, float uTile, float vTile, Vector3 upVec ) : Axiom.Core.Mesh
name string
group string
plane Axiom.MathLib.Plane
width float
height float
xSegments int
ySegments int
normals bool
texCoordSetCount int
uTile float
vTile float
upVec Vector3
return Axiom.Core.Mesh
		public Mesh CreatePlane( string name, string group, Plane plane, float width, float height, int xSegments, int ySegments, bool normals, int texCoordSetCount, float uTile, float vTile, Vector3 upVec )
		{
			return CreatePlane( name, group, plane, width, height, xSegments, ySegments, normals, texCoordSetCount, uTile, vTile, upVec, BufferUsage.StaticWriteOnly, BufferUsage.StaticWriteOnly, true, true );
		}

Same methods

MeshManager::CreatePlane ( string name, string group, Axiom.MathLib.Plane plane, float width, float height, int xSegments, int ySegments, bool normals, int texCoordSetCount, float uTile, float vTile, Vector3 upVec, BufferUsage vertexBufferUsage, BufferUsage indexBufferUsage, bool vertexShadowBuffer, bool indexShadowBuffer ) : Axiom.Core.Mesh
MeshManager::CreatePlane ( string name, string group, Axiom.MathLib.Plane plane, int width, int height ) : Axiom.Core.Mesh