Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
dtschump committed May 2, 2024
2 parents 6e67e7c + fc579c6 commit 16b7d93
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion CImg.h
Original file line number Diff line number Diff line change
Expand Up @@ -17319,6 +17319,9 @@ namespace cimg_library {
case 'u' :
if (reserved_label[(int)'u']!=~0U) _cimg_mp_return(reserved_label[(int)'u']);
_cimg_mp_scalar0(mp_rand_double_0_1);
case 'v' :
if (reserved_label[(int)'v']!=~0U) _cimg_mp_return(reserved_label[(int)'v']);
_cimg_mp_scalar0(mp_rand_int_0_1);
case 'g' :
if (reserved_label[(int)'g']!=~0U) _cimg_mp_return(reserved_label[(int)'g']);
_cimg_mp_scalar0(mp_rand_double_gaussian);
Expand Down Expand Up @@ -28287,7 +28290,8 @@ namespace cimg_library {
const int
shift = (int)_mp_arg(4),
boundary_conditions = (int)_mp_arg(5);
CImg<doubleT>(ptrd,siz,1,1,1,true) = CImg<doubleT>(ptrs,siz,1,1,1,true).shift(shift,0,0,0,boundary_conditions);
CImg<doubleT>(ptrd,siz,1,1,1,true) =
CImg<doubleT>(ptrs,siz,1,1,1,true).get_shift(shift,0,0,0,boundary_conditions);
return cimg::type<double>::nan();
}

Expand Down
2 changes: 1 addition & 1 deletion html/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<div class="header">
<a href="index.html"><img alt="Logo" src="img/logo_header.jpg" class="center_image" style="margin-top:1em;"/></a>
<h2 style="padding-bottom: 1em">
Latest stable version: <b><a href="http://cimg.eu/files/CImg_.zip">3.3.5</a></b> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Current pre-release: <b><a href="http://cimg.eu/files/CImg_latest.zip">3.3.6</a></b> (2024/04/12)
Latest stable version: <b><a href="http://cimg.eu/files/CImg_.zip">3.3.5</a></b> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Current pre-release: <b><a href="http://cimg.eu/files/CImg_latest.zip">3.3.6</a></b> (2024/04/30)
</h2>

<hr/>
Expand Down
2 changes: 1 addition & 1 deletion html/header_doxygen.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<div class="header">
<a href="../index.html"><img alt="Logo" src="../img/logo_header.jpg" class="center_image" style="margin-top:1em;"/></a>
<h2 style="padding-bottom: 1em">
Latest stable version: <b><a href="http://cimg.eu/files/CImg_.zip">3.3.5</a></b> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Current pre-release: <b><a href="http://cimg.eu/files/CImg_latest.zip">3.3.6</a></b> (2024/04/12)
Latest stable version: <b><a href="http://cimg.eu/files/CImg_.zip">3.3.5</a></b> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Current pre-release: <b><a href="http://cimg.eu/files/CImg_latest.zip">3.3.6</a></b> (2024/04/30)
</h2>

<hr/>
Expand Down

0 comments on commit 16b7d93

Please sign in to comment.