A modifier that will combine vertices together that are close to each other. More...
#include <weldverticesmodifier.h>
Public Member Functions | |
WeldVerticesModifier () | |
Blank constructor. | |
virtual | ~WeldVerticesModifier () |
Class destructor. | |
virtual String | GetName () const |
Gets the name of this modifier. More... | |
virtual void | Modify (TriangleBuffer &Buffer) |
Alters the generated pixels in a TriangleBuffer. More... | |
WeldVerticesModifier & | SetTolerance (const Real Tolerance) |
Sets the distance within which vertices will be combined. More... | |
Public Member Functions inherited from Mezzanine::Graphics::Procedural::MeshModifier | |
MeshModifier () | |
Blank constructor. | |
virtual | ~MeshModifier () |
Class destructor. | |
Protected Attributes | |
Real | WeldTolerance |
The distance vertices have to be within to be combined. More... | |
A modifier that will combine vertices together that are close to each other.
Definition at line 82 of file weldverticesmodifier.h.
|
virtual |
Gets the name of this modifier.
Implements Mezzanine::Graphics::Procedural::MeshModifier.
Definition at line 129 of file weldverticesmodifier.cpp.
|
virtual |
Alters the generated pixels in a TriangleBuffer.
Buffer | The buffer to be modified. |
Implements Mezzanine::Graphics::Procedural::MeshModifier.
Definition at line 88 of file weldverticesmodifier.cpp.
WeldVerticesModifier & Mezzanine::Graphics::Procedural::WeldVerticesModifier::SetTolerance | ( | const Real | Tolerance | ) |
Sets the distance within which vertices will be combined.
Tolerance | The distance vertices have to be within to be combined. |
Definition at line 135 of file weldverticesmodifier.cpp.
|
protected |
The distance vertices have to be within to be combined.
Definition at line 87 of file weldverticesmodifier.h.