Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
IPainter2D.cs
1using System;
2using SkiaSharp;
3
5{
9 public interface IPainter2D : IPainter
10 {
20 void DrawGraph(SKCanvas Canvas, SKPoint[] Points, object[] Parameters, SKPoint[] PrevPoints, object[] PrevParameters,
22 }
23}
Contains information about the current drawing area.
Definition: DrawingArea.cs:12
Interface for 2D graph drawing functions.
Definition: IPainter2D.cs:10
void DrawGraph(SKCanvas Canvas, SKPoint[] Points, object[] Parameters, SKPoint[] PrevPoints, object[] PrevParameters, DrawingArea DrawingArea)
Draws the graph on a canvas.
Interface for graph drawing functions.
Definition: IPainter.cs:10