resolve rectangular systems
This commit is contained in:
20
src/Vect.h
20
src/Vect.h
@@ -36,4 +36,24 @@ class Vect {
|
||||
|
||||
private:
|
||||
void Simplify();
|
||||
};
|
||||
|
||||
|
||||
class VectAffine {
|
||||
private:
|
||||
Vect m_Base;
|
||||
Matrix m_Origin;
|
||||
|
||||
public:
|
||||
VectAffine(const Vect& base, const Matrix& origin);
|
||||
|
||||
void Print() const;
|
||||
|
||||
const Vect& GetBase() const {
|
||||
return m_Base;
|
||||
}
|
||||
|
||||
const Matrix& GetOrigin() const {
|
||||
return m_Origin;
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user