Changeset 17097 for stable/HeuristicLab.Common/3.3/Point2D.cs
- Timestamp:
- 07/07/19 23:40:10 (4 years ago)
- Location:
- stable
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Common/3.3/Point2D.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 23 23 using System.ComponentModel; 24 24 using System.Globalization; 25 using HEAL.Attic; 25 26 26 27 namespace HeuristicLab.Common { 27 28 [Serializable] 29 [StorableType("9c4b8927-6b8e-490f-a367-78091ccf1494")] 28 30 public struct Point2D<T> where T : struct, IEquatable<T> { 29 31 public static readonly Point2D<T> Empty = new Point2D<T>(); … … 33 35 get { return x; } 34 36 } 37 35 38 private T y; 36 39 public T Y {
Note: See TracChangeset
for help on using the changeset viewer.