mirror of
https://github.com/oliverbooth/X10D
synced 2024-11-09 22:55:42 +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 `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.
|
||||||
|
@ -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
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user