This page has been translated automatically.
Programming
Fundamentials
Setting Up Development Environment
UnigineScript
High-Level Systems
C++
C#
UUSL (Unified UNIGINE Shader Language)
File Formats
Rebuilding the Engine and Tools
GUI
Double Precision Coordinates
API
Containers
Engine Classes
Node-Related Classes
Rendering-Related Classes
Physics-Related Classes
Bounds-Related Classes
GUI-Related Classes
Controls-Related Classes
Pathfinding-Related Classes
Utility Classes
注意! 这个版本的文档是过时的,因为它描述了一个较老的SDK版本!请切换到最新SDK版本的文档。
注意! 这个版本的文档描述了一个不再受支持的旧SDK版本!请升级到最新的SDK版本。

dvec3 Struct (C++)

Vector of 3 double components.

To use this structure, include the UnigineMathLib.h file.

Unigine::dvec3Structure

Members


UNIGINE_DECLARE_USE_MEMORY UNIGINE_INLINE dvec3 ()

Default constructor that produces a zero vector.

UNIGINE_INLINE dvec3 (const dvec3 & v)

Initialization by a vector.

Arguments

  • const dvec3 & v - The value of the vector.

UNIGINE_INLINE dvec3 (const dvec2 & v, double z)

Initialization by a vector and a scalar.

Arguments

  • const dvec2 & v - The value of the vector.
  • double z - Z component of the vector.

UNIGINE_INLINE dvec3 (double x, double y, double z)

Initialization by scalars.

Arguments

  • double x - X component of the vector.
  • double y - Y component of the vector.
  • double z - Z component of the vector.

explicit UNIGINE_INLINE dvec3 (double v)

Initialization by a scalar: x=v, y=v, z=v.

Arguments

  • double v - The value of the vector.

explicit UNIGINE_INLINE dvec3 (const dvec2 & v)

Initialization by a vector of two double components: x=v.x, y=v.y, z=0.0.

Arguments

  • const dvec2 & v - The value of the vector.

explicit UNIGINE_INLINE dvec3 (const dvec4 & v)

Initialization by a vector of four double components: x=v.x, y=v.y, z=v.z.

Arguments

  • const dvec4 & v - The value of the vector.

explicit UNIGINE_INLINE dvec3 (const vec3 & v)

Initialization by a vector.

Arguments

  • const vec3 & v - The value of the vector.

explicit UNIGINE_INLINE dvec3 (const ivec3 & v)

Initialization by a vector of integer components.

Arguments

  • const ivec3 & v - The value of the vector.

explicit UNIGINE_INLINE dvec3 (const double * v)

Initialization by a pointer to the vector.

Arguments

  • const double * v - Pointer to the vector.

UNIGINE_INLINE dvec3 operator- () const

Vector negation.

Return value

The resulting vector.

UNIGINE_INLINE dvec3 & operator*= (double v)

Scalar multiplication.

Arguments

  • double v - The value of the scalar.

Return value

The resulting vector.

UNIGINE_INLINE dvec3 & operator*= (const dvec3 & v)

Vector multiplication.

Arguments

  • const dvec3 & v - The value of the vector.

Return value

The resulting vector.

UNIGINE_INLINE dvec3 & operator+= (const dvec3 & v)

Vector addition.

Arguments

  • const dvec3 & v - The value of the vector.

Return value

The resulting vector.

UNIGINE_INLINE dvec3 & operator-= (const dvec3 & v)

Vector subtraction.

Arguments

  • const dvec3 & v - The value of the vector.

Return value

The resulting vector.

UNIGINE_INLINE double & operator[] (int i)

Array access.

Arguments

  • int i - Array item index.

Return value

The array item.

UNIGINE_INLINE double operator[] (int i) const

Constant array access.

Arguments

  • int i - Array item index.

Return value

The array item.

UNIGINE_INLINE void set (double x_, double y_, double z_)

Set vector.

Arguments

  • double x_ - X component of the vector.
  • double y_ - Y component of the vector.
  • double z_ - Z component of the vector.

UNIGINE_INLINE void set (const double * v)

Set vector.

Arguments

  • const double * v - Pointer to the vector.

UNIGINE_INLINE void get (double * v) const

Get vector.

Arguments

  • double * v - Pointer to the vector.

UNIGINE_INLINE double * get ()

Get a pointer to the vector.

Return value

Pointer to the vector.

UNIGINE_INLINE const double * get () const

Get a constant pointer to the vector.

Return value

Pointer to the vector.

Unigine::dvec3::Union

union {
struct {
double x;
double y;
double z;
double w;
};
double v[4];
};
Last update: 2017-07-03
Build: ()