Defines a plane.

Namespace: DigitalRune.Geometry.Shapes
Assembly: DigitalRune.Geometry (in DigitalRune.Geometry.dll) Version: 1.9.0.0 (1.9.3.9490)

Syntax

C#
[SerializableAttribute]
public struct Plane : IEquatable<Plane>
Visual Basic
<SerializableAttribute> _
Public Structure Plane _
	Implements IEquatable(Of Plane)
Visual C++
[SerializableAttribute]
public value class Plane : IEquatable<Plane>

Remarks

This is a lightweight structure. To define a plane shape for IGeometricObject use PlaneShape.

Two Planes are considered as equal if Normal and DistanceFromOrigin are equal.

See Also