Click or drag to resize

ICoordinate Interface

[This is preliminary documentation and is subject to change.]

Marker interface for objects which have X-, Y- and Z-coordinates

Namespace:  ModelExchanger.Shared.Models.Interfaces
Assembly:  ModelExchanger.Shared.Models (in ModelExchanger.Shared.Models.dll) Version: 1.13.0+Branch.master.Sha.d583fc64569355d188a9c0818d257b6d0d3e1339
Syntax
C#
public interface ICoordinate

The ICoordinate type exposes the following members.

Properties
  NameDescription
Public propertyX
The X-coordinate
Public propertyY
The Y-coordinate
Public propertyZ
The Z-coordinate
Top
Extension Methods
  NameDescription
Public Extension MethodCrossProduct
Calculates the cross product between 2 coordinates (= vectors)
(Defined by ICoordinateExtensions.)
Public Extension MethodMagnitude
Calculates the magnitude (size or length) of a coordinate (= vector), between origin (0,0,0) and the coordinate itself.
(Defined by ICoordinateExtensions.)
Public Extension MethodToGeometryPoint
Convert an ICoordinate to a geometry point
(Defined by ICoordinateExtensions.)
Top
See Also