Implements Matrix form.
You can find more information in comments below. Overrided methods can be found in corresponding base classes and interfaces.
class CFormMatrix :public virtual IFormMatrix, public CForm
{
public:
static const String ClassName; // Class name
Mat4f getValue() override;
bool setValue(const Mat4f &value) override;
void ActivateFirstEnabledInput() override;
CFormMatrix(IWindow *window, IRenderer *renderer);
};
Namespace: | nitisa::standard |
Include: | Standard/Forms/Matrix/FormMatrix.h |