BEPUphysics.CollisionShapes.StaticMeshShape.StaticMeshShape C# (CSharp) Method

StaticMeshShape() public method

Constructs a new StaticMeshShape.
public StaticMeshShape ( Microsoft.Xna.Framework.Vector3 vertices, int indices ) : BEPUphysics.DataStructures
vertices Microsoft.Xna.Framework.Vector3 Vertices of the mesh.
indices int Indices of the mesh.
return BEPUphysics.DataStructures
        public StaticMeshShape(Vector3[] vertices, int[] indices)
        {
            triangleMeshData = new TransformableMeshData(vertices, indices);
        }

Same methods

StaticMeshShape::StaticMeshShape ( Microsoft.Xna.Framework.Vector3 vertices, int indices, AffineTransform worldTransform ) : BEPUphysics.DataStructures
StaticMeshShape