Browse Source
Merge pull request #3170 from FirmaSpring/fix/cubic-resampler-spline-docs
docs: drop copied Robidoux Sharp comment from Spline
pull/3177/head
James Jackson-South
2 weeks ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
0 additions and
4 deletions
-
src/ImageSharp/Processing/Processors/Transforms/Resamplers/CubicResampler.cs
|
|
|
@ -53,10 +53,6 @@ public readonly struct CubicResampler : IResampler |
|
|
|
/// The function implements the spline algorithm.
|
|
|
|
/// <see href="http://www.imagemagick.org/Usage/filter/#cubic_bc"/>
|
|
|
|
/// </summary>
|
|
|
|
/// <summary>
|
|
|
|
/// The function implements the Robidoux Sharp algorithm.
|
|
|
|
/// <see href="http://www.imagemagick.org/Usage/filter/#robidoux"/>
|
|
|
|
/// </summary>
|
|
|
|
public static readonly CubicResampler Spline = new(2, 1, 0); |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|