Free cookie consent management tool by TermsFeed Policy Generator

source: tags/3.3.8/HeuristicLab.ExtLibs/HeuristicLab.Netron/3.0.2672.12446/Netron.Diagramming.Core-3.0.2672.12446/Layout/SpeedVector.cs @ 13398

Last change on this file since 13398 was 4068, checked in by swagner, 14 years ago

Sorted usings and removed unused usings in entire solution (#1094)

File size: 394 bytes
Line 
1using System.Drawing;
2
3namespace Netron.Diagramming.Core {
4  /// <summary>
5  /// SpeedVector vector.
6  /// Is just like a <see cref="Point"/> but the data type has double precision.
7  /// </summary>
8  struct SpeedVector {
9    public double X;
10    public double Y;
11    public SpeedVector(double speedx, double speedy) {
12      this.X = speedx;
13      this.Y = speedy;
14    }
15  }
16}
Note: See TracBrowser for help on using the repository browser.