Little work on BoundingFrustum done.
This commit is contained in:
parent
f2d97002fa
commit
a1467c2e5d
@ -1,5 +1,6 @@
|
|||||||
#region Using Statements
|
#region Using Statements
|
||||||
using System;
|
using System;
|
||||||
|
using System.Text;
|
||||||
|
|
||||||
#endregion // Using Statements
|
#endregion // Using Statements
|
||||||
|
|
||||||
@ -806,9 +807,24 @@ namespace ANX.Framework
|
|||||||
throw new NotImplementedException();
|
throw new NotImplementedException();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//source: monoxna
|
||||||
public override string ToString()
|
public override string ToString()
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
StringBuilder sb = new StringBuilder(256);
|
||||||
|
sb.Append("{Near:");
|
||||||
|
sb.Append(this.near.ToString());
|
||||||
|
sb.Append(" Far:");
|
||||||
|
sb.Append(this.far.ToString());
|
||||||
|
sb.Append(" Left:");
|
||||||
|
sb.Append(this.left.ToString());
|
||||||
|
sb.Append(" Right:");
|
||||||
|
sb.Append(this.right.ToString());
|
||||||
|
sb.Append(" Top:");
|
||||||
|
sb.Append(this.top.ToString());
|
||||||
|
sb.Append(" Bottom:");
|
||||||
|
sb.Append(this.bottom.ToString());
|
||||||
|
sb.Append("}");
|
||||||
|
return sb.ToString();
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user