mirror of
https://github.com/MaSzyna-EU07/maszyna.git
synced 2026-07-22 04:39:18 +02:00
milek7/sim branch network code import
This commit is contained in:
@@ -313,8 +313,8 @@ template <class Iterator_, class VecType_>
|
||||
void
|
||||
bounding_box( VecType_ &Mincorner, VecType_ &Maxcorner, Iterator_ First, Iterator_ Last ) {
|
||||
|
||||
Mincorner = VecType_( typename std::numeric_limits<VecType_::value_type>::max() );
|
||||
Maxcorner = VecType_( typename std::numeric_limits<VecType_::value_type>::lowest() );
|
||||
Mincorner = VecType_( std::numeric_limits<typename VecType_::value_type>::max() );
|
||||
Maxcorner = VecType_( std::numeric_limits<typename VecType_::value_type>::lowest() );
|
||||
|
||||
std::for_each(
|
||||
First, Last,
|
||||
|
||||
Reference in New Issue
Block a user