Skip to content

Commit

Permalink
converted point3 from struct to class
Browse files Browse the repository at this point in the history
  • Loading branch information
Cesare Caoduro authored and Cesare Caoduro committed Sep 15, 2021
1 parent 00b81f0 commit 641eb38
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 641eb38

Please sign in to comment.