arsa  2.7
Public Member Functions | List of all members
irr::scene::SVertexPositionScaleManipulator Class Reference

Vertex manipulator which scales the position of the vertex. More...

#include <SVertexManipulator.h>

Inheritance diagram for irr::scene::SVertexPositionScaleManipulator:
irr::scene::IVertexManipulator

Public Member Functions

 SVertexPositionScaleManipulator (const core::vector3df &factor)
 
template<typename VType >
void operator() (VType &vertex) const
 

Detailed Description

Vertex manipulator which scales the position of the vertex.

Definition at line 221 of file SVertexManipulator.h.

Constructor & Destructor Documentation

◆ SVertexPositionScaleManipulator()

irr::scene::SVertexPositionScaleManipulator::SVertexPositionScaleManipulator ( const core::vector3df factor)
inline

Definition at line 224 of file SVertexManipulator.h.

224 : Factor(factor) {}

Member Function Documentation

◆ operator()()

template<typename VType >
void irr::scene::SVertexPositionScaleManipulator::operator() ( VType &  vertex) const
inline

Definition at line 226 of file SVertexManipulator.h.

227  {
228  vertex.Pos *= Factor;
229  }

The documentation for this class was generated from the following file: