GraphLineTests RefreshWillRemoveLines Method Delta Engine Documentation

Namespace: DeltaEngine.Rendering2D.Graphs.Tests
Assembly: DeltaEngine.Rendering2D.Graphs.Tests (in DeltaEngine.Rendering2D.Graphs.Tests.dll) Version: 1.1.1.0 (1.1.1)
Syntax

public void RefreshWillRemoveLines()
Examples

[Test]
public void RefreshWillRemoveLines()
{
    GraphLine line = CreateLineWithTwoPoints();
    line.AddValue(0.4f, 4.0f);
    line.lines.Add(new Line2D(Vector2D.Zero, Vector2D.One, Color.Purple));
    line.Refresh();
}
See Also