|
Mesh3Add Method
|
add together list of meshes.
Namespace:
Karamba.Geometry
Assembly:
KarambaCommon (in KarambaCommon.dll) Version: 2.2.0.4 (2.2.0.4)
Syntaxpublic static Mesh3 Add(
List<IMesh> meshes,
Nullable<Color> default_color
)
Public Shared Function Add (
meshes As List(Of IMesh),
default_color As Nullable(Of Color)
) As Mesh3
public:
static Mesh3^ Add(
List<IMesh^>^ meshes,
Nullable<Color> default_color
)
static member Add :
meshes : List<IMesh> *
default_color : Nullable<Color> -> Mesh3
Parameters
- meshes
- Type: System.Collections.GenericListIMesh
list of meshes to add. - default_color
- Type: SystemNullableColor
color to be used in case some meshes have vertex colors and some not.
Return Value
Type:
Mesh3mesh which results from adding up all given meshes. Duplicate vertices are not removed.
See Also