Click or drag to resize
Accord.NET (logo)

Point3 Structure

3D point structure with X, Y, and coordinates.

Namespace:  Accord.Math
Assembly:  Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax
[SerializableAttribute]
public struct Point3
Request Example View Source

The Point3 type exposes the following members.

Constructors
  NameDescription
Public methodPoint3(Vector3)
Creates a new Point3 structure from the given coordinates.
Public methodPoint3(Single, Single, Single)
Creates a new Point3 structure from the given coordinates.
Top
Properties
  NameDescription
Public propertyStatic memberOrigin
Gets the point at the 3D space origin: (0, 0, 0)
Public propertyX
Gets or sets the point's X coordinate.
Public propertyY
Gets or sets the point's Y coordinate.
Public propertyZ
Gets or sets the point's Z coordinate.
Top
Methods
  NameDescription
Public methodStatic memberCollinear
Gets whether three points lie on the same line.
Public methodEquals(Object)
Determines whether the specified Object is equal to this instance.
(Overrides ValueTypeEquals(Object).)
Public methodEquals(Point3)
Determines whether the specified Point3 is equal to this instance.
Public methodEquals(Point3, Double)
Determines whether the specified Point3 is equal to this instance.
Public methodStatic memberFromVector
Performs a conversion from Vector3 to Point3.
Public methodGetHashCode
Returns a hash code for this instance.
(Overrides ValueTypeGetHashCode.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodToString
Returns the fully qualified type name of this instance.
(Inherited from ValueType.)
Top
Operators
Extension Methods
  NameDescription
Public Extension MethodHasMethod
Checks whether an object implements a method with the given name.
(Defined by ExtensionMethods.)
Public Extension MethodIsEqual
Compares two objects for equality, performing an elementwise comparison if the elements are vectors or matrices.
(Defined by Matrix.)
Public Extension MethodTo(Type)Overloaded.
Converts an object into another type, irrespective of whether the conversion can be done at compile time or not. This can be used to convert generic types to numeric types during runtime.
(Defined by ExtensionMethods.)
Public Extension MethodToTOverloaded.
Converts an object into another type, irrespective of whether the conversion can be done at compile time or not. This can be used to convert generic types to numeric types during runtime.
(Defined by ExtensionMethods.)
Top
See Also