Add mesh reading and conversion support
This commit is contained in:
parent
65dc96c4d6
commit
aa1277a4e1
25 changed files with 2212 additions and 9 deletions
19
LibDgf/Ps2/Vif/VuVector.cs
Normal file
19
LibDgf/Ps2/Vif/VuVector.cs
Normal file
|
@ -0,0 +1,19 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace LibDgf.Ps2.Vif
|
||||
{
|
||||
public struct VuVector
|
||||
{
|
||||
public VuFloat X;
|
||||
public VuFloat Y;
|
||||
public VuFloat Z;
|
||||
public VuFloat W;
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return $"<{X}, {Y}, {Z}, {W}>";
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue