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