Show / Hide Table of Contents

Interface IVector3D

Interface that defines common properties for data structures that describe coordinates, vectors, magnitudes, and sizes in a three-dimensional space.

Inherited Members
IVector.X
IVector.Y
IVector.ToVector2()
IEquatable<IVector>.Equals(IVector)
IEquatable<Vector2>.Equals(Vector2)
IEquatable<Vector3>.Equals(Vector3)
Namespace: TheXDS.MCART.Types.Base
Assembly: MCART.dll
Syntax
public interface IVector3D : IVector, IEquatable<IVector>, IEquatable<Vector2>, IEquatable<Vector3>

Properties

| Edit this page View Source

Z

Gets the component of the Z axis represented by this IVector3D.

Declaration
double Z { get; }
Property Value
Type Description
double

Methods

| Edit this page View Source

ToVector3()

Converts the current IVector3D to a Vector3.

Declaration
Vector3 ToVector3()
Returns
Type Description
Vector3

A new Vector3 instance with the same X, Y and Z values as this IVector.

Extension Methods

Objects.ShallowCopyTo(object, object, Type)
ObjectExtensions.FieldsOf<T>(object)
ObjectExtensions.GetAttribute<T>(object)
ObjectExtensions.GetAttributes<T>(object)
ObjectExtensions.HasAttrValue<TAttribute, TValue>(object, out TValue)
ObjectExtensions.HasAttribute<T>(object)
ObjectExtensions.HasAttribute<T>(object, out T?)
ObjectExtensions.HasAttributes<T>(object, out IEnumerable<T>?)
ObjectExtensions.Is(object?, object?)
ObjectExtensions.IsEither(object, IEnumerable)
ObjectExtensions.IsEither(object, params object[])
ObjectExtensions.IsNeither(object, IEnumerable)
ObjectExtensions.IsNeither(object, params object[])
ObjectExtensions.IsNot(object?, object?)
ObjectExtensions.PropertiesOf<T>(object)
ObjectExtensions.WhichAre(object, IEnumerable<object>)
ObjectExtensions.WhichAre(object, params object[])
Common.IfNotNull<T>(T?, Action<T>)
Objects.Itself<T>(T)
Objects.ShallowCopyTo<T>(T, T)
CollectionExtensions.PushInto<TItem, TCollection>(TItem, ICollection<TCollection>)
DictionaryExtensions.PushInto<TKey, TValue>(TValue, TKey, IDictionary<TKey, TValue>)
  • Edit this page
  • View Source
In this article
Back to top Generated by DocFX