Interface IExpandable<T>
Interface describing objects that can expand themselves by objects of type T.
Namespace: NetTopologySuite.Geometries
Assembly: NetTopologySuite.dll
Syntax
public interface IExpandable<T>
Type Parameters
| Name | Description |
|---|---|
| T | The type of objects that can expand clients |
Methods
| Edit this page View SourceExpandToInclude(T)
Method to expand this object by other
Declaration
void ExpandToInclude(T other)
Parameters
| Type | Name | Description |
|---|---|---|
| T | other | The object to expand with |
ExpandedBy(T)
Function to expand compute a new object that is this object by expanded by other.
Declaration
T ExpandedBy(T other)
Parameters
| Type | Name | Description |
|---|---|---|
| T | other | The object to expand with |
Returns
| Type | Description |
|---|---|
| T | The expanded object |