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版本。

bvec4 Struct (C++)

Vector of 4 byte components. This vector is used for vertex color parameters.

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

Unigine::bvec4Structure

Members


UNIGINE_DECLARE_USE_MEMORY UNIGINE_INLINE bvec4 ()

Default constructor that produces a zero vector.

UNIGINE_INLINE bvec4 (const bvec4 & v)

Initialization by a vector.

Arguments

  • const bvec4 & v - Value of the vector.

UNIGINE_INLINE bvec4 (unsigned char x, unsigned char y, unsigned char z, unsigned char w)

Initialization by scalars.

Arguments

  • unsigned char x - X component of the vector.
  • unsigned char y - Y component of the vector.
  • unsigned char z - Z component of the vector.
  • unsigned char w - W component of the vector.

UNIGINE_INLINE bvec4 ()

Initialization by a vector and multiplier.

explicit UNIGINE_INLINE bvec4 (unsigned char v)

Initialization by a scalar.

Arguments

  • unsigned char v - Value of the scalar.

explicit UNIGINE_INLINE bvec4 (const vec4 & v)

Initialization by a vector.

Arguments

  • const vec4 & v - Value of the vector.

explicit UNIGINE_INLINE bvec4 (const dvec4 & v)

Initialization by a vector of double components.

Arguments

  • const dvec4 & v - Value of the vector.

explicit UNIGINE_INLINE bvec4 (const ivec4 & v)

Initialization by a vector of integer components.

Arguments

  • const ivec4 & v - Value of the vector.

explicit UNIGINE_INLINE bvec4 (const unsigned char * v)

Initialization by a pointer to the vector.

Arguments

  • const unsigned char * v - Pointer to the vector.

UNIGINE_INLINE unsigned char & operator[] (int i)

Array access.

Arguments

  • int i - Array item index.

Return value

Array item.

UNIGINE_INLINE unsigned char operator[] (int i) const

Constant array access.

Arguments

  • int i - Array item index.

Return value

Array item.

UNIGINE_INLINE void set (unsigned char x_, unsigned char y_, unsigned char z_, unsigned char w_)

Set vector.

Arguments

  • unsigned char x_ - X component of the vector.
  • unsigned char y_ - Y component of the vector.
  • unsigned char z_ - Z component of the vector.
  • unsigned char w_ - W component of the vector.

UNIGINE_INLINE void set (const unsigned char * v)

Set vector.

Arguments

  • const unsigned char * v - Pointer to the vector.

UNIGINE_INLINE void set ()

Set vector.

UNIGINE_INLINE unsigned char * get ()

Get a pointer to the vector.

Return value

Pointer to the vector.

UNIGINE_INLINE const unsigned char * get () const

Get a constant pointer to the vector.

Return value

Pointer to the vector.

Unigine::bvec4::Union

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