Dayz Explorer 1.28.160049
Loading...
Searching...
No Matches
Math3D library

Classes

class  Math3D
 

Enumerations

enum  ECurveType { CatmullRom , NaturalCubic , UniformCubic }
 

Functions

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

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>
proto void Print(void var)
Prints content of variable to console/log.
proto native vector Vector(float x, float y, float z)
Vector constructor from components.