Exemplo n.º 1
0
 private static bool         GenerateTree(Int32 userID, out Int32 generatedTreeNodeID)
 {
     return(CSGManager.GenerateTree(userID, out generatedTreeNodeID));
 }
Exemplo n.º 2
0
 internal static bool    GetNodeLocalTransformation(Int32 nodeID, out Matrix4x4 localTransformation)
 {
     return(CSGManager.GetNodeLocalTransformation(nodeID, out localTransformation));
 }
Exemplo n.º 3
0
 private static CSGTreeBrushFlags        GetBrushFlags(Int32 brushNodeID)
 {
     return(CSGManager.GetBrushFlags(brushNodeID));
 }
Exemplo n.º 4
0
 internal static Int32   IndexOfChildNode(Int32 nodeID, Int32 childNodeID)
 {
     return(CSGManager.IndexOfChildNode(nodeID, childNodeID));
 }
Exemplo n.º 5
0
 internal static bool    RemoveChildNodeRange(Int32 nodeID, Int32 index, Int32 count)
 {
     return(CSGManager.RemoveChildNodeRange(nodeID, index, count));
 }
Exemplo n.º 6
0
 internal static bool    ClearChildNodes(Int32 nodeID)
 {
     return(CSGManager.ClearChildNodes(nodeID));
 }
Exemplo n.º 7
0
 internal static bool    RemoveChildNodeAt(Int32 nodeID, Int32 index)
 {
     return(CSGManager.RemoveChildNodeAt(nodeID, index));
 }
Exemplo n.º 8
0
 internal static bool SetChildNodes(Int32 nodeID, CSGTreeNode[] children)
 {
     return(CSGManager.SetChildNodes(nodeID, children));
 }
Exemplo n.º 9
0
 internal static CSGTreeNode[] GetChildNodes(Int32 nodeID)
 {
     return(CSGManager.GetChildNodes(nodeID));
 }
Exemplo n.º 10
0
 internal static Int32   GetNodeOperationType(Int32 nodeID)
 {
     return((int)CSGManager.GetNodeOperationType(nodeID));
 }
Exemplo n.º 11
0
 internal static bool    SetNodeOperationType(Int32 nodeID, CSGOperationType operation)
 {
     return(CSGManager.SetNodeOperationType(nodeID, operation));
 }
Exemplo n.º 12
0
 internal static bool    GetNodeToTreeSpaceMatrix(Int32 nodeID, out Matrix4x4 nodeToTreeMatrix)
 {
     return(CSGManager.GetNodeToTreeSpaceMatrix(nodeID, out nodeToTreeMatrix));
 }
Exemplo n.º 13
0
 internal static bool    GetTreeToNodeSpaceMatrix(Int32 nodeID, out Matrix4x4 treeToNodeMatrix)
 {
     return(CSGManager.GetTreeToNodeSpaceMatrix(nodeID, out treeToNodeMatrix));
 }
Exemplo n.º 14
0
 private static bool     GenerateBranch(Int32 userID, out Int32 generatedBranchNodeID)
 {
     return(CSGManager.GenerateBranch(userID, out generatedBranchNodeID));
 }
Exemplo n.º 15
0
 internal static bool    RemoveChildNode(Int32 nodeID, Int32 childNodeID)
 {
     return(CSGManager.RemoveChildNode(nodeID, childNodeID));
 }
Exemplo n.º 16
0
 internal static bool    SetDirty(Int32 nodeID)
 {
     return(CSGManager.SetDirty(nodeID));
 }
Exemplo n.º 17
0
 internal static bool    AddChildNode(Int32 nodeID, Int32 childNodeID)
 {
     return(CSGManager.AddChildNode(nodeID, childNodeID));
 }
Exemplo n.º 18
0
 internal static int CopyToUnsafe(Int32 nodeID, int childCount, CSGTreeNode[] children, int arrayIndex)
 {
     return(CSGManager.CopyToUnsafe(nodeID, childCount, children, arrayIndex));
 }
Exemplo n.º 19
0
 internal static Int32   GetChildNodeAtIndex(Int32 nodeID, Int32 index)
 {
     return(CSGManager.GetChildNodeAtIndex(nodeID, index));
 }
Exemplo n.º 20
0
 internal static bool InsertChildNodeRange(Int32 nodeID, Int32 index, CSGTreeNode[] children)
 {
     return(CSGManager.InsertChildNodeRange(nodeID, index, children));
 }
Exemplo n.º 21
0
 internal static bool    InsertChildNode(Int32 nodeID, Int32 index, Int32 childNodeID)
 {
     return(CSGManager.InsertChildNode(nodeID, index, childNodeID));
 }
Exemplo n.º 22
0
 internal static CSGNodeType GetTypeOfNode(Int32 nodeID)
 {
     return(CSGManager.GetTypeOfNode(nodeID));
 }
Exemplo n.º 23
0
 internal static bool    IsNodeDirty(Int32 nodeID)
 {
     return(CSGManager.IsNodeDirty(nodeID));
 }
Exemplo n.º 24
0
 internal static bool    IsNodeIDValid(Int32 nodeID)
 {
     return(CSGManager.IsValidNodeID(nodeID));
 }
Exemplo n.º 25
0
 internal static bool    DestroyNode(Int32 nodeID)
 {
     return(CSGManager.DestroyNode(nodeID));
 }
Exemplo n.º 26
0
 internal static Int32   GetTreeOfNode(Int32 nodeID)
 {
     return(CSGManager.GetTreeOfNode(nodeID));
 }
Exemplo n.º 27
0
 internal static bool    SetNodeLocalTransformation(Int32 nodeID, ref Matrix4x4 localTransformation)
 {
     return(CSGManager.SetNodeLocalTransformation(nodeID, ref localTransformation));
 }
Exemplo n.º 28
0
 internal static Int32   GetChildNodeCount(Int32 nodeID)
 {
     return(CSGManager.GetChildNodeCount(nodeID));
 }
Exemplo n.º 29
0
 private static bool                                     SetBrushFlags(Int32 brushNodeID, CSGTreeBrushFlags flags)
 {
     return(CSGManager.SetBrushFlags(brushNodeID, flags));
 }
Exemplo n.º 30
0
 private bool GetUserIDsInFrustum(Plane[]         planes,
                                  out Int32[] userIDs)
 {
     return(CSGManager.GetUserIDsInFrustum(planes, out userIDs));
 }