/* -*- C++ -*-
* scalegroup.h
* $Id: scalegroup.h,v 1.2 2000/07/21 22:31:44 ghali Exp $
*/
#ifndef SCALEGROUP_H
#define SCALEGROUP_H
#include "../geom/vector3d.h"
#include "transformgroup.h"
namespace MSG {
class ScaleGroup : public TransformGroup {
Vector3d scale;
public:
ScaleGroup(const Vector3d& _scale);
void applyTransformation();
virtual void render(std::vector<ActiveLight*>* &activelights,
std::vector<TransformGroup*> transforms);
};
}
#endif
1.0.0 written by Dimitri van Heesch,
© 1997-1999