Skip to content

Commit

Permalink
Bicubic: Fix typos (oops)
Browse files Browse the repository at this point in the history
  • Loading branch information
LightArrowsEXE committed Nov 19, 2023
1 parent b7d50f5 commit fadbc0b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vskernels/kernels/bicubic.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,14 +120,14 @@ def __init__(self, **kwargs: Any) -> None:


class AdobeBicubicSharper(Bicubic):
"""Bicuboc b=0, c=1, blur=1.05; Adobe's "Bicubic Sharper" interpolation preset."""
"""Bicubic b=0, c=1, blur=1.05; Adobe's "Bicubic Sharper" interpolation preset."""

def __init__(self, **kwargs: Any) -> None:
super().__init__(b=0, c=1, blur=1.05, **kwargs)


class AdobeBicubicSmoother(Bicubic):
"""Bicuboc b=0, c=0.625, blur=1.15 ; Adobe's "Bicubic Smoother" interpolation preset."""
"""Bicubic b=0, c=0.625, blur=1.15 ; Adobe's "Bicubic Smoother" interpolation preset."""

def __init__(self, **kwargs: Any) -> None:
super().__init__(b=0, c=5 / 8, blur=1.15, **kwargs)
Expand Down

0 comments on commit fadbc0b

Please sign in to comment.