Created
August 7, 2008 03:18
-
-
Save anonymous/4316 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private struct BoxInstance | |
{ | |
public Vector3 position; | |
public Vector3 dimensions; | |
public Vector3 rotation; | |
public Vector4 color; | |
public bool inUse; | |
//***************************************************************** | |
public void Reset( ) | |
{ | |
position = Vector3.Zero; | |
dimensions = Vector3.Zero; | |
rotation = Vector3.Zero; | |
color = Vector4.Zero; | |
inUse = false; | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment