VectSharp  2.2.1
A light library for C# vector graphics
VectSharp.Filters.BoxBlurFilter Class Reference

Represents a filter applying a box blur. More...

Inheritance diagram for VectSharp.Filters.BoxBlurFilter:

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]
 
- Properties inherited from VectSharp.Filters.IFilter
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...
 

Detailed Description

Represents a filter applying a box blur.

Definition at line 26 of file BoxBlurFilter.cs.

Constructor & Destructor Documentation

◆ BoxBlurFilter()

VectSharp.Filters.BoxBlurFilter.BoxBlurFilter ( double  boxRadius)

Creates a new BoxBlurFilter with the specified radius.

Parameters
boxRadiusThe radius of the box blur (the actual size of the box is 2 * boxRadius + 1).

Definition at line 42 of file BoxBlurFilter.cs.

Property Documentation

◆ BoxRadius

double VectSharp.Filters.BoxBlurFilter.BoxRadius
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.


The documentation for this class was generated from the following file: