void RadiantSelectionSystem::keyChanged()
{
    if (!nothingSelected()) {
        pivotChanged();
        ConstructPivot();
    }
}
예제 #2
0
// Lets the ConstructPivot() method do the work and returns the result that is stored in the member variable
const Matrix4& RadiantSelectionSystem::GetPivot2World() const {
	ConstructPivot();
	return _pivot2world;
}