VectSharp
2.2.1
A light library for C# vector graphics
|
Represents a filter that corresponds to applying multiple ILocationInvariantFilters one after the other. More...
Public Member Functions | |
CompositeLocationInvariantFilter (IEnumerable< ILocationInvariantFilter > filters) | |
Creates a new CompositeLocationInvariantFilter with the specified filters. More... | |
CompositeLocationInvariantFilter (params ILocationInvariantFilter[] filters) | |
Creates a new CompositeLocationInvariantFilter with the specified filters. More... | |
RasterImage | Filter (RasterImage image, double scale) |
Applies the filter to a RasterImage. | |
Properties | |
Point | TopLeftMargin [get] |
Point | BottomRightMargin [get] |
ImmutableList< ILocationInvariantFilter > | Filters [get] |
The filters that are applied by this filter. More... | |
![]() | |
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 that corresponds to applying multiple ILocationInvariantFilters one after the other.
Definition at line 26 of file CompositeFilter.cs.
VectSharp.Filters.CompositeLocationInvariantFilter.CompositeLocationInvariantFilter | ( | IEnumerable< ILocationInvariantFilter > | filters | ) |
Creates a new CompositeLocationInvariantFilter with the specified filters.
filters | The filters that will be applied by the new filter. |
Definition at line 43 of file CompositeFilter.cs.
VectSharp.Filters.CompositeLocationInvariantFilter.CompositeLocationInvariantFilter | ( | params ILocationInvariantFilter[] | filters | ) |
Creates a new CompositeLocationInvariantFilter with the specified filters.
filters | The filters that will be applied by the new filter. |
Definition at line 70 of file CompositeFilter.cs.
|
get |
The filters that are applied by this filter.
Definition at line 37 of file CompositeFilter.cs.