Dayz Explorer  1.24.157551 (v105080)
Dayz Code Explorer by Zeroy
Math3D library

Data Structures

class  Math3D
 

Enumerations

enum  ECurveType { CatmullRom, NaturalCubic, UniformCubic }
 

Functions

proto native vector Vector (float x, float y, float z)
 Vector constructor from components. More...
 

Detailed Description

Enumeration Type Documentation

◆ ECurveType

enum ECurveType
Enumerator
CatmullRom 
NaturalCubic 
UniformCubic 

Definition at line 20 of file enmath3d.c.

Function Documentation

◆ Vector()

proto native vector Vector ( float  x,
float  y,
float  z 
)

Vector constructor from components.

Parameters
xfloat x component
yfloat y component
zfloat z component
Returns
vector resulting vector
Print( Vector(1, 2, 3) );
>> <1,2,3>
Print
proto void Print(void var)
Prints content of variable to console/log.
Vector
proto native vector Vector(float x, float y, float z)
Vector constructor from components.