first good build. Part, PartFrame, Matrix

This commit is contained in:
Aik-Siong Koh
2023-05-02 10:22:37 -06:00
parent 5c4b08606d
commit 697aad4db9
39 changed files with 453 additions and 99 deletions

View File

@@ -3,14 +3,3 @@
#include "FullColumn.h"
using namespace MbD;
std::string FullColumn<double>::toString() {
std::stringstream ss;
ss << "FullColumn { ";
for (int i = 0; i < this->size() - 1; i++) {
ss << this->at(i) << ", ";
}
ss << this->back() << " }";
return ss.str();
}