VectSharp
2.2.1
A light library for C# vector graphics
|
Represents a filter applying a box blur. More...
Public Member Functions | |
BoxBlurFilter (double boxRadius) | |
Creates a new BoxBlurFilter with the specified radius. More... | |
RasterImage | Filter (RasterImage image, double scale) |
Applies the filter to a RasterImage. | |
Properties | |
double | BoxRadius [get] |
The radius of the box blur (the actual size of the box is 2 * BoxRadius + 1). More... | |
Point | TopLeftMargin [get] |
Point | BottomRightMargin [get] |
![]() | |
Point | TopLeftMargin [get] |
Determines how much the area of the filter's subject should be expanded on the top-left to accommodate the results of the filter. More... | |
Point | BottomRightMargin [get] |
Determines how much the area of the filter's subject should be expanded on the bottom-right to accommodate the results of the filter. More... | |
Represents a filter applying a box blur.
Definition at line 26 of file BoxBlurFilter.cs.
VectSharp.Filters.BoxBlurFilter.BoxBlurFilter | ( | double | boxRadius | ) |
Creates a new BoxBlurFilter with the specified radius.
boxRadius | The radius of the box blur (the actual size of the box is 2 * boxRadius + 1). |
Definition at line 42 of file BoxBlurFilter.cs.
|
get |
The radius of the box blur (the actual size of the box is 2 * BoxRadius + 1).
Definition at line 31 of file BoxBlurFilter.cs.