6 references to D
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\Numerics\Plane.cs (6)
94
/// <summary>Returns the dot product of a specified three-dimensional vector and the normal vector of this plane plus the distance (<see cref="
D
" />) value of the plane.</summary>
158
/// <remarks>Two <see cref="Plane" /> objects are equal if their <see cref="Normal" /> and <see cref="
D
" /> fields are equal.
175
/// <remarks>The current instance and <paramref name="obj" /> are equal if <paramref name="obj" /> is a <see cref="Plane" /> object and their <see cref="Normal" /> and <see cref="
D
" /> fields are equal.</remarks>
181
/// <remarks>Two <see cref="Plane" /> objects are equal if their <see cref="Normal" /> and <see cref="
D
" /> fields are equal.</remarks>
187
public override readonly int GetHashCode() => HashCode.Combine(Normal,
D
);
192
public override readonly string ToString() => $"{{Normal:{Normal} D:{
D
}}}";