CreateMesh

Namespace: JigLibX.Geometry
Assembly: JigLibX (in JigLibX.dll) Version: 0.3.1.0

Syntax

C#
public void CreateMesh(
	List<Vector3> vertices,
	List<TriangleVertexIndices> triangleVertexIndices,
	int maxTrianglesPerCell,
	float minCellSize
)
Visual Basic
Public Sub CreateMesh ( _
	vertices As List(Of Vector3), _
	triangleVertexIndices As List(Of TriangleVertexIndices), _
	maxTrianglesPerCell As Integer, _
	minCellSize As Single _
)
Visual C++
public:
void CreateMesh(
	List<Vector3>^ vertices, 
	List<TriangleVertexIndices>^ triangleVertexIndices, 
	int maxTrianglesPerCell, 
	float minCellSize
)

Parameters

vertices
Type: System.Collections.Generic..::..List<(Of <(<'Vector3>)>)>

[Missing <param name="vertices"/> documentation for "M:JigLibX.Geometry.TriangleMesh.CreateMesh(System.Collections.Generic.List{Microsoft.Xna.Framework.Vector3},System.Collections.Generic.List{JigLibX.Geometry.TriangleVertexIndices},System.Int32,System.Single)"]

triangleVertexIndices
Type: System.Collections.Generic..::..List<(Of <(<'TriangleVertexIndices>)>)>

[Missing <param name="triangleVertexIndices"/> documentation for "M:JigLibX.Geometry.TriangleMesh.CreateMesh(System.Collections.Generic.List{Microsoft.Xna.Framework.Vector3},System.Collections.Generic.List{JigLibX.Geometry.TriangleVertexIndices},System.Int32,System.Single)"]

maxTrianglesPerCell
Type: System..::..Int32

[Missing <param name="maxTrianglesPerCell"/> documentation for "M:JigLibX.Geometry.TriangleMesh.CreateMesh(System.Collections.Generic.List{Microsoft.Xna.Framework.Vector3},System.Collections.Generic.List{JigLibX.Geometry.TriangleVertexIndices},System.Int32,System.Single)"]

minCellSize
Type: System..::..Single

[Missing <param name="minCellSize"/> documentation for "M:JigLibX.Geometry.TriangleMesh.CreateMesh(System.Collections.Generic.List{Microsoft.Xna.Framework.Vector3},System.Collections.Generic.List{JigLibX.Geometry.TriangleVertexIndices},System.Int32,System.Single)"]

See Also