HM_Vector

Contains information about a vector in three-dimensional space.

Syntax

struct HM_Point {
double xyz[3];
};
typedef HM_Point HM_Vector;

Type

HyperMesh Ext API Function

Description

This type contains information about a vector in three-dimensional space.

The structure of HM_Vector type is identical to the structure of the HM_Point type. The type HM_Vector is introduced to provide semantic distinction between point and vector types for the purpose of enhancing readability of the code. The structure information is declared in hm_extapi.h.

The members are: xyz

Inputs

xyz
X, Y and Z coordinates of a vector represented by the HM_Vector type.

Errors

None.