Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
SCR_DbgUI.c
Go to the documentation of this file.
2{
8 static void Matrix(string label, vector matrix[4])
9 {
10 DbgUI.Text(label + "[0] = " + matrix[0].ToString());
11 DbgUI.Text(label + "[1] = " + matrix[1].ToString());
12 DbgUI.Text(label + "[2] = " + matrix[2].ToString());
13 DbgUI.Text(label + "[3] = " + matrix[3].ToString());
14 }
20 static void Quat(string label, float quat[4])
21 {
22 DbgUI.Text(label + "[0] = " + quat[0].ToString());
23 DbgUI.Text(label + "[1] = " + quat[1].ToString());
24 DbgUI.Text(label + "[2] = " + quat[2].ToString());
25 DbgUI.Text(label + "[3] = " + quat[3].ToString());
26 }
27};
Definition DbgUI.c:66
proto external string ToString()
Plain C++ pointer, no weak pointers, no memory management.