Skip to content

Commit

Permalink
Merge pull request #365 from GSharker/dev/ceca/point3-fix
Browse files Browse the repository at this point in the history
converted point3 from struct to class
  • Loading branch information
cesarecaoduro committed Sep 22, 2021
2 parents 7aa0807 + 641eb38 commit 3d95bde
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/GShark/Geometry/Point3.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,13 @@ namespace GShark.Geometry
/// Defines a Vector in Euclidean space with coordinates X, Y, and Z.
/// Referenced from https://github.com/mcneel/rhinocommon/blob/master/dotnet/opennurbs/opennurbs_point.cs
/// </summary>
public struct Point3 : IEquatable<Point3>, IComparable<Point3>, IComparable
public class Point3 : IEquatable<Point3>, IComparable<Point3>, IComparable
{
/// <summary>
/// Initializes a new point.
/// </summary>
public Point3() { }

/// <summary>
/// Initializes a new point by defining the X, Y and Z coordinates.
/// </summary>
Expand Down

0 comments on commit 3d95bde

Please sign in to comment.