removed weird function
Some checks failed
Linux arm64 / Build (push) Failing after 2m26s

This commit is contained in:
2024-05-14 22:41:01 +02:00
parent 47f250170e
commit 4b3e878bc5
2 changed files with 0 additions and 14 deletions

View File

@@ -105,12 +105,6 @@ class VectAffine {
*/
bool IsElementOf(const Matrix& a_Vector) const;
/**
* \brief Exprime l'espace vectoriel comme les solutions d'un système linéaire des coordonnées des vecteurs
* \return Une matrice représentant le système linéaire
*/
Matrix GetLinearSystem() const;
bool operator==(const VectAffine& a_VectAffine) const {
return m_Origin == a_VectAffine.GetOrigin() && m_Base == a_VectAffine.GetBase();
};