| LineDrawingPlotFunction Delegate |
The plot function delegate
Namespace: Slash.Math.Geometry.LinesAssembly: Slash.Math (in Slash.Math.dll) Version: 1.0.6018.40177
Syntax public delegate bool PlotFunction(
int x,
int y
)
Public Delegate Function PlotFunction (
x As Integer,
y As Integer
) As Boolean
public delegate bool PlotFunction(
int x,
int y
)
type PlotFunction =
delegate of
x : int *
y : int -> bool
Parameters
- x
- Type: SystemInt32
The x co-ord being plotted - y
- Type: SystemInt32
The y co-ord being plotted
Return Value
Type:
BooleanTrue to continue, false to stop the algorithm
See Also