| MeshHelperMerge Method (Mesh, IListVector3F, IListPose) |
Merges the specified mesh instances into a single mesh.
Namespace: DigitalRune.GraphicsAssembly: DigitalRune.Graphics (in DigitalRune.Graphics.dll) Version: 1.2.0.0 (1.2.1.14562)
Syntax public static Mesh Merge(
Mesh mesh,
IList<Vector3F> scales,
IList<Pose> poses
)
Public Shared Function Merge (
mesh As Mesh,
scales As IList(Of Vector3F),
poses As IList(Of Pose)
) As Mesh
public:
static Mesh^ Merge(
Mesh^ mesh,
IList<Vector3F>^ scales,
IList<Pose>^ poses
)
static member Merge :
mesh : Mesh *
scales : IList<Vector3F> *
poses : IList<Pose> -> Mesh
Parameters
- mesh
- Type: DigitalRune.GraphicsMesh
The mesh. - scales
- Type: System.Collections.GenericIListVector3F
The scale factors. Can be to use no scale, i.e. all scale factors are
(1, 1, 1).
- poses
- Type: System.Collections.GenericIListPose
The poses (positions and orientations).
Return Value
Type:
MeshThe merged mesh.
Exceptions See Also