first good build. Part, PartFrame, Matrix
This commit is contained in:
@@ -6,8 +6,10 @@ namespace MbD {
|
||||
class Vector : public Array<T>
|
||||
{
|
||||
public:
|
||||
Vector() {}
|
||||
Vector(int i) : Array<T>(i) {}
|
||||
Vector(std::initializer_list<T> list) : Array<T>{ list } {}
|
||||
};
|
||||
}
|
||||
|
||||
typedef std::initializer_list<double> ListD;
|
||||
|
||||
Reference in New Issue
Block a user