Skip to content

Commit

Permalink
SDL_Viewer: contouring: reduce gaussian brush extent.
Browse files Browse the repository at this point in the history
The previous commit did not go far enough.
  • Loading branch information
Hal Clark committed Jan 30, 2024
1 parent 710f85f commit bf972d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Operations/SDL_Viewer.cc
Expand Up @@ -599,7 +599,7 @@ void draw_with_brush( const decltype(planar_image_collection<float,double>().get

}else if( (brush == brush_t::gaussian_2D)
|| (brush == brush_t::gaussian_3D) ){
buffer_space = radius * 2.75;
buffer_space = radius * 2.25;

}else if( (brush == brush_t::tanh_2D)
|| (brush == brush_t::tanh_3D) ){
Expand Down

0 comments on commit bf972d9

Please sign in to comment.