docs: fix xmldoc for Line3D

This commit is contained in:
Oliver Booth 2023-08-22 23:53:13 +01:00
parent fa375e7758
commit 15107ea90f
Signed by: oliverbooth
GPG Key ID: B89D139977693FED
2 changed files with 5 additions and 1 deletions

View File

@ -27,6 +27,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- X10D.Unity: Added `RaycastHit.GetComponent` and `RaycastHit.TryGetComponent`. - X10D.Unity: Added `RaycastHit.GetComponent` and `RaycastHit.TryGetComponent`.
- X10D.Unity: Added `DebugUtility.DrawFunction`, and `DebugUtility.DrawUnjoinedPolyhedron` on which it relies. - X10D.Unity: Added `DebugUtility.DrawFunction`, and `DebugUtility.DrawUnjoinedPolyhedron` on which it relies.
### Fixed
- X10D: Fixed XMLDoc for `Line3D` to read "single-precision floating-point" instead of "32-bit signed integer".
### Changed ### Changed
- X10D: DateTime.Age(DateTime) and DateTimeOffset.Age(DateTimeOffset) parameter renamed from asOf to referenceDate. - X10D: DateTime.Age(DateTime) and DateTimeOffset.Age(DateTimeOffset) parameter renamed from asOf to referenceDate.

View File

@ -4,7 +4,7 @@ using System.Numerics;
namespace X10D.Drawing; namespace X10D.Drawing;
/// <summary> /// <summary>
/// Represents a line in 3D space that is composed of 32-bit signed integer X, Y and Z coordinates. /// Represents a line in 3D space that is composed of single-precision floating-point X, Y and Z coordinates.
/// </summary> /// </summary>
public readonly struct Line3D : IEquatable<Line3D>, IComparable<Line3D>, IComparable public readonly struct Line3D : IEquatable<Line3D>, IComparable<Line3D>, IComparable
{ {