Mesh.Simplify Method |
Language: |
Generates a simplified mesh using the provided weights that come as close as possible to the given minValue.
This method generates a mesh that has minValue vertices or faces.
If the simplification process cannot reduce the mesh to minValue, the call still succeeds, because minValue is a desired minimum, not an absolute minimum.
If vertexAttributeWeights is omitted, the following values are assigned to the default AttributeWeights structure (C# code shown).
[C#]
AttributeWeights aWeights; aWeights.Position = 1.0; aWeights.Boundary = 1.0; aWeights.Normal = 1.0; aWeights.Diffuse = 0.0; aWeights.Specular = 0.0; aWeights.Tex[8] = {0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0};This default structure is what most applications should use, because it considers only geometric and normal adjustment. Only in special cases will the other member fields need to be modified.
Exceptions
InvalidCallException The method call is invalid. For example, a method's parameter might contain an invalid value. InvalidDataException The data is invalid. OutOfMemoryException Microsoft Direct3D could not allocate sufficient memory to complete the call.
Send comments about this topic to Microsoft. © Microsoft Corporation. All rights reserved.
Feedback? Please provide us with your comments on this topic.
For more help, visit the DirectX Developer Center