mirror of
https://github.com/oliverbooth/X10D
synced 2024-11-22 01:58:47 +00:00
docs: fix xmldoc for Line3D
This commit is contained in:
parent
fa375e7758
commit
15107ea90f
@ -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 `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
|
||||
|
||||
- X10D: DateTime.Age(DateTime) and DateTimeOffset.Age(DateTimeOffset) parameter renamed from asOf to referenceDate.
|
||||
|
@ -4,7 +4,7 @@ using System.Numerics;
|
||||
namespace X10D.Drawing;
|
||||
|
||||
/// <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>
|
||||
public readonly struct Line3D : IEquatable<Line3D>, IComparable<Line3D>, IComparable
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user