You are here: Symbol Reference > Dew Namespace > Dew.Math Namespace > Dew.Math.Tee Namespace > Classes > MtxVecTee Class > MtxVecTee Methods > DrawIt Method > MtxVecTee.DrawIt Method (TVec, int, int)
Dew Math for .NET
ContentsIndexHome
PreviousUpNext
MtxVecTee.DrawIt Method (TVec, int, int)

Shows form with tChart and FastLine series showing vector values.

Syntax
C#
Visual Basic
public static void DrawIt(TVec a, int width, int height);
Parameters 
Description 
TVec a 
Source vector. 
int width 
Form width. 
int height 
Form height. 

The width and height parameters control form width and height respectively.

Load vector, display it's values in 400x300 form.

using Dew.Math; using Dew.Math.Tee; Vector v = new Vector(0); v.LoadFromFile("c:\data\testvector.vec"); MtxVecTee.DrawIt(v,400,300);
Copyright (c) 1999-2024 by Dew Research. All rights reserved.
What do you think about this topic? Send feedback!