Changeset 14618
- Timestamp:
- 01/30/17 15:27:58 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/OptimizationNetworks/HeuristicLab.Networks.Views.NetworkVisualization/3.3/Layout.cs
r13833 r14618 163 163 public double Y { get; private set; } 164 164 165 public Vector(double magnitude, double direction) { 165 public Vector(double magnitude, double direction) 166 : this() { 166 167 X = magnitude * Math.Cos(direction * DEG_TO_RAD); 167 168 Y = magnitude * Math.Sin(direction * DEG_TO_RAD);
Note: See TracChangeset
for help on using the changeset viewer.