23#ifndef VCL_SPACE_CORE_MATRIX_H
24#define VCL_SPACE_CORE_MATRIX_H
26#include "matrix/affine.h"
27#include "matrix/matrix.h"
40template<MatrixConcept MatrixType>
47 if constexpr (!MatrixType::IsRowMajor) {
48 stg = vcl::MatrixStorageType::COLUMN_MAJOR;
A class representing a line segment in n-dimensional space. The class is parameterized by a PointConc...
Definition segment.h:43
Concept for Eigen matrices. It is satisfied when T is an Eigen matrix.
Definition matrix.h:53
vcl::MatrixStorageType matrixStorageType()
Get the storage type of a matrix.
Definition matrix.h:41
MatrixStorageType
A simple type that enumerates the main storage types for matrices (row or column major).
Definition base.h:76