source:
trunk/HeuristicLab.ExtLibs/HeuristicLab.Netron/3.0.2672.12446/Netron.Diagramming.Core-3.0.2672.12446/Layout/SpeedVector.cs
Last change on this file was 4068, checked in by swagner, 14 years ago | |
---|---|
File size: 394 bytes |
Line | |
---|---|
1 | using System.Drawing; |
2 | |
3 | namespace 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.