Default constructor initializing a null box. */
| 101 | |
| 102 | /** Default constructor initializing a null box. */ |
| 103 | EIGEN_DEVICE_FUNC inline AlignedBox() |
| 104 | { if (EIGEN_CONST_CONDITIONAL(AmbientDimAtCompileTime!=Dynamic)) setEmpty(); } |
| 105 | |
| 106 | /** Constructs a null box with \a _dim the dimension of the ambient space. */ |
| 107 | EIGEN_DEVICE_FUNC inline explicit AlignedBox(Index _dim) : m_min(_dim), m_max(_dim) |
nothing calls this directly
no outgoing calls
no test coverage detected