C# Class Tango.TangoSupport.DVector3

A double-precision 3D vector.
Exibir arquivo Open project: stetro/project-tango-poc

Public Methods

Method Description
DVector3 ( Vector3 vector ) : System

Creates a new double-precision vector from the given single-precision vector.

ToString ( ) : string

Returns a string representation of this vector.

ToVector3 ( ) : Vector3

Returns a single-precision vector representation of this double-precision vector.

Method Details

DVector3() public method

Creates a new double-precision vector from the given single-precision vector.
public DVector3 ( Vector3 vector ) : System
vector Vector3 A single-precision vector.
return System

ToString() public method

Returns a string representation of this vector.
public ToString ( ) : string
return string

ToVector3() public method

Returns a single-precision vector representation of this double-precision vector.
public ToVector3 ( ) : Vector3
return Vector3