C# Class Revit.SDK.Samples.SlabShapeEditing.CS.Vector4

Vector4 is a homogeneous coordinate class used to store vector and contain method to handle the vector
显示文件 Open project: AMEE/revit

Public Methods

Method Description
CrossProduct ( Vector4 v ) : Vector4

get normal vector of plane contains two vectors

CrossProduct ( Vector4 va, Vector4 vb ) : Vector4

get normal vector of two vectors

DotProduct ( Vector4 v ) : double

dot multiply vector

DotProduct ( Vector4 va, Vector4 vb ) : double

dot multiply two vectors

Length ( ) : double

calculate the length of vector

Normalize ( ) : void

get unit vector

Vector4 ( Autodesk v ) : System

constructor, transfer Autodesk.Revit.DB.XYZ to vector

Vector4 ( double x, double y, double z ) : System

constructor

operator ( ) : Vector4

multiplies a vector by a double type value

Method Details

CrossProduct() public method

get normal vector of plane contains two vectors
public CrossProduct ( Vector4 v ) : Vector4
v Vector4 second vector
return Vector4

CrossProduct() public static method

get normal vector of two vectors
public static CrossProduct ( Vector4 va, Vector4 vb ) : Vector4
va Vector4 first vector
vb Vector4 second vector
return Vector4

DotProduct() public method

dot multiply vector
public DotProduct ( Vector4 v ) : double
v Vector4 the result vector
return double

DotProduct() public static method

dot multiply two vectors
public static DotProduct ( Vector4 va, Vector4 vb ) : double
va Vector4 first vector
vb Vector4 second vector
return double

Length() public method

calculate the length of vector
public Length ( ) : double
return double

Normalize() public method

get unit vector
public Normalize ( ) : void
return void

Vector4() public method

constructor, transfer Autodesk.Revit.DB.XYZ to vector
public Vector4 ( Autodesk v ) : System
v Autodesk Autodesk.Revit.DB.XYZ structure which needs to be transferred
return System

Vector4() public method

constructor
public Vector4 ( double x, double y, double z ) : System
x double
y double
z double
return System

operator() public static method

multiplies a vector by a double type value
public static operator ( ) : Vector4
return Vector4