Free cookie consent management tool by TermsFeed Policy Generator

source: tags/3.3.0/HeuristicLab.ExtLibs/HeuristicLab.Netron/3.0.2672.12446/Netron.Diagramming.Core-3.0.2672.12446/Layout/SpeedVector.cs

Last change on this file was 2768, checked in by mkommend, 14 years ago

added solution folders and sources for the netron library (ticket #867)

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