BEPUphysics.BroadPhaseEntries.StaticMesh.StaticMesh C# (CSharp) Method

StaticMesh() public method

Constructs a new static mesh.
public StaticMesh ( System.Vector3 vertices, int indices ) : System
vertices System.Vector3 Vertex positions of the mesh.
indices int Index list of the mesh.
return System
        public StaticMesh(Vector3[] vertices, int[] indices)
        {
            base.Shape = new StaticMeshShape(vertices, indices);
            Events = new ContactEventManager<StaticMesh>();

        }

Same methods

StaticMesh::StaticMesh ( System.Vector3 vertices, int indices, AffineTransform worldTransform ) : System