using OpenTK;
namespace SM.Base.Scene
{
///
/// Contains methods for using transformations right.
///
public abstract class GenericTransformation
{
///
/// Calculates the current matrix.
///
/// The current matrix.
public abstract Matrix4 GetMatrix();
}
}