BrawlCrate v0.41
Wii File Editor
Loading...
Searching...
No Matches
Public Member Functions | Public Attributes | Properties | List of all members
BrawlLib.Internal.DVector3 Struct Reference

Public Member Functions

 DVector3 (double x, double y, double z)
 

Public Attributes

double X
 
double Y
 
double Z
 

Properties

unsafe double this[int index] [get, set]
 

Constructor & Destructor Documentation

◆ DVector3()

BrawlLib.Internal.DVector3.DVector3 ( double  x,
double  y,
double  z 
)
inline
13 {
14 X = x;
15 Y = y;
16 Z = z;
17 }
double Y
Definition: DVector3.cs:9
double Z
Definition: DVector3.cs:10
double X
Definition: DVector3.cs:8

Member Data Documentation

◆ X

double BrawlLib.Internal.DVector3.X

◆ Y

double BrawlLib.Internal.DVector3.Y

◆ Z

double BrawlLib.Internal.DVector3.Z

Property Documentation

◆ this[int index]

unsafe double BrawlLib.Internal.DVector3.this[int index]
getset
20 {
21 get
22 {
23 fixed (DVector3* p = &this)
24 {
25 return ((double*) p)[index];
26 }
27 }
28 set
29 {
30 fixed (DVector3* p = &this)
31 {
32 ((double*) p)[index] = value;
33 }
34 }
35 }

The documentation for this struct was generated from the following file: