Skip to content

Commit

Permalink
fix bug json realize exception
Browse files Browse the repository at this point in the history
  • Loading branch information
chuongmep committed Jul 31, 2023
1 parent 76819e0 commit a7b42a2
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/GShark/Geometry/BoundingBox.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,14 @@ namespace GShark.Geometry
/// </summary>
public class BoundingBox
{
/// <summary>
/// Constructs a new bounding box with a default transform and extents of (-100, -100, -100) to (100, 100, 100).
/// </summary>
public BoundingBox()
{
Min = new Point3(-100, -100, -100);
Max = new Point3(100, 100, 100);
}
/// <summary>
/// Constructs a new bounding box from two corner points.
/// </summary>
Expand Down

0 comments on commit a7b42a2

Please sign in to comment.