fixed creation of the proper OGLFT.h file by CMake
parent
f583cf39a8
commit
33683e817d
File diff suppressed because it is too large
Load Diff
|
@ -233,13 +233,13 @@ namespace OGLFT {
|
|||
if ( new_value < x_min_ ) x_min_ = new_value;
|
||||
|
||||
new_value = b.y_min_ + advance_.dy_;
|
||||
if ( new_value < y_min_ ) y_min_ = new_value;
|
||||
if ( (b.advance_.dy_ != 0.) && new_value < y_min_ ) y_min_ = new_value;
|
||||
|
||||
new_value = b.x_max_ + advance_.dx_;
|
||||
if ( new_value > x_max_ ) x_max_ = new_value;
|
||||
|
||||
new_value = b.y_max_ + advance_.dy_;
|
||||
if ( new_value > y_max_ ) y_max_ = new_value;
|
||||
if ( (b.advance_.dy_ != 0.) && new_value > y_max_ ) y_max_ = new_value;
|
||||
|
||||
advance_.dx_ += b.advance_.dx_;
|
||||
advance_.dy_ += b.advance_.dy_;
|
||||
|
|
Loading…
Reference in New Issue